How to Change the Default Port in Spring Boot 1. Introduction Spring Boot provides sensible defaults for many configuration properties. Still, we sometimes need to customize these with our case-specific values. A common use case is changing the default port for the embedded server. In this quick tutorial, we’ll cover… Continue Reading spring-boot-change-port

Guide to @EnableConfigurationProperties 1. Introduction In this quick tutorial, we’ll show how to use an @EnableConfigurationProperties annotation with @ConfigurationProperties annotated classes. 2. Purpose of @EnableConfigurationProperties Annotation @EnableConfigurationProperties annotation is strictly connected to @ConfiguratonProperties. It enables support for @ConfigurationProperties annotated classes in our application. However, it’s worth to point out that… Continue Reading spring-enable-config-properties