Spring Boot is the popular framework on Java platform, using this framework we can easily develop enterprise applications, and also it provides various starter projects different modules like web, security, amqp, batch applications etc…, and also it provides a maven provides to package all the depended classes to flat jar which is runnable application. Spring boot framework provides easy to way to develop plugin on top spring boot framework. Based on our company libraries we can write our own starter projects which will auto configure the required beans for spring boot applications. These auto configuration jars won`t need to write any code, we need to add them to class-path, spring boot will take care of creating beans behalf of us. Understanding auto configured beans: Auto-configuration classes are implemented using @Configuration classes, but it may also contain @Conditional annotations which are used specify when auto-configuration need to apply. We generally use @Condition...
Comments
Post a Comment