Springboot如何开发一个自定义Starter

Springboot中,Starter干了什么?

1.自动加载类的实例到容器中
2.通过配置设置类的属性

怎样实现的?

1.通过Springboot的AutoConfigure机制
2.META-INF/spring.factories文件设置属性org.springframework.boot.autoconfigure.EnableAutoConfiguration

需要的基础

1.熟悉Springboot使用
2.了解Java注解

步骤

1.创建Service
2.创建Properties
3.创建Autoonfiguration文件
4.配置spring.factories文件
5.pom引入package

        
            org.springframework.boot
            spring-boot-autoconfigure
            2.2.2.RELEASE
        
        
            org.springframework.boot
            spring-boot
            2.2.2.RELEASE
        

6.调用端引入package
7.调用端配置application属性

你可能感兴趣的:(Springboot如何开发一个自定义Starter)