Skip to main content

Best Practices: Config changes in Spring Boot

Any additional Spring configuration beyond what Spring boot auto-configuration provides, its always better to write separate @Configuration-configured classes. These @Configuration annotated classes will be picked up by component scanning and included in the Spring configuration.

Its always judicial to avoid adding configuration to the primary Spring configuration class or application's bootstrap class.

Comments

  1. Why a VPN is better for betting sites than - DrmCD
    Why a VPN is better for betting sites 제주 출장안마 than When you 부천 출장안마 need an option to 부산광역 출장안마 find a good VPN, you 진주 출장마사지 need to 진주 출장샵 start planning

    ReplyDelete

Post a Comment

Popular posts from this blog

POST vs PUT

There are multiple ways developers will explain the difference between POST and PUT but fundamentally idempotency is the most distinguishing and important difference. Idempotent HTTP requests will result in the same state on the server no matter how many times that same request is executed. GET, HEAD, PUT, and DELETE all have this attribute but POST does not. So the operations that should be idempotent should not be handled by POST but by PUT. For example, 'POST /tweets' will create a new tweet and might return a url to identify the new tweet resource with 'tweet/1007' 'PUT /tweet/1007' will either create a new tweet if it does not already exist, or replace the existing tweet with new information. Remember, POST will always have a side-effect!

@interface vs interface in Java

@interface is an annotation type declaration which resembles a Java Interface declaration - interface. Examples of standard Java annotations include @Override, @SuppressWarning etc. Java has always had meta-data tags like transient and Javadoc tag @deprecated. Annotations do not impact the flow of the program but impact the way a program is treated by tools or libraries.