Configure Jetty Server in Spring Boot
By default, Spring boot uses an embedded tomcat server to run the application. At times, you may need to use the jetty server in place of the tomcat server. Spring Boot provides…
By default, Spring boot uses an embedded tomcat server to run the application. At times, you may need to use the jetty server in place of the tomcat server. Spring Boot provides…
If you are a Java programmer and wondering what to read to improve your knowledge of Java and become a better Java developer, then you have come to the right place.…
1. Introduction One of the more heart-warming developments of recent years has been an ongoing simplification of how web applications are deployed. Skipping all the boring intermediate historical steps, we…
1. Overview In this quick tutorial, we'll explore how to define custom filters and specify their invocation order with the help of Spring Boot. Filters as the name suggest used…
In this post, we will discuss the @Order annotation. We are covering various features of this annotation. Introduction @Order annotation defines the sort order for an annotated component. This annotation is available…
Spring has announced that Milestone 3 (M3) of the Spring Cloud Hoxton (Hoxton.M3) Release is available. The release can be found in the Spring repository. Significant changes in the Hoxton Release This latest…
SpringApplication.run(Classname.class, args) bootstraps a spring application as a stand-alone application from the main method. It creates an appropriate ApplicationContext instance and load beans. By default, if the main class isn't…
In this article, we will cover the famous Spring Boot Whitelabel error page. We are covering how to disable the default error page and how we can customize the Whitelabel error page in your Spring Boot application.…
1. Overview In this article, we'll explore the property expansion mechanism provided by Spring through Maven Build method. 2. Configuration In resource files, we can use ${...} placeholder as variables…
1. Introduction One handy feature of Spring Boot is externalized configuration and easy access to properties defined in properties files. They also provide you the flexibility to tune your application from…