Spring boot development tips
1. Overview If you are spring boot developer then you should know about following things which will improve your productivity as well as product impression. Here are some important spring…
1. Overview If you are spring boot developer then you should know about following things which will improve your productivity as well as product impression. Here are some important spring…
1. Overview In the previous example, we have discussed about spring boot OAuth 2 authentication server configuration but it was storing token in-memory. Here is an explanation of Spring boot…
1. Overview In this article, we will be going to discuss how to integrate Solr with spring boot. Spring boot started data Solr is the extension of spring data which used…
1. Overview This article contains Spring Boot Session Listener Example or Spring boot HttpSessionListener as well as HttpSessionAttributeListener. To create Http Session Listener need to create @Bean of HttpSessionListener class and to…
1. Overview When Spring boot application contains multiple main class at that time exception will be thrown at time of compilation because spring boot will get confused from which main…
1. Overview This article is about to Spring boot request routing example using zuul API. zuul API is used to route request which is specially use for micro service architecture, We can…
1. Overview This article will provide ways to Spring boot disable endpoints security. By default endpoints are secure because it contains sensitive information of application. But some times for development purpose…
Generally, we are proving spring boot application HTTP Server port using server.port in the application.properties files but if we have thousand of microservices at that time we do not like to specified…
While configuring spring with tomcat 7 following error accuse which means that tomcat 7 requires jully for logging. Problem: org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.beans.factory.BeanCreationException: Error…
Spring boot by default support tomcat 8.5 but some times requires to configure tomcat 7 based on project requirement. Here is configuration for Spring boot with Tomcat 7. To configure…