Tag: context
Spring Boot – How to Change Default Context Path
by  Java4s | 4 Comments
  [ Ask Question ]
Firstly what is this context path? simply its our application name. Generally while we are hitting any application in the browser, we will write the URL with the application name(context) right? I mean… http://localhost:<port>/<application_name or context_path>/operation_name But if you check Spring…
Spring Boot – Display All Beans Available in ApplicationContext
by  Java4s | 3 Comments
  [ Ask Question ]
In this article, I am going to show you how to see the beans that are loaded by the Spring Boot from the ApplicationContext. What we have to do is implement main class with CommandLineRunner/ApplicationRunner interface and override its run…