一、简介
SpringBoot 最强大的功能就是把我们常用的场景抽取成了一个个starter(场景
启动器),我们通过引入springboot 为我提供的这些场景启动器,我们再进行
少量的配置就能使用相应的功能。即使是这样,springboot也不能囊括我们所
有的使用场景,往往我们需要自定义starter,来简化我们对springboot的使
用。
二、如何自定义starter
1.实例
如何编写自动配置 ?
我们参照@WebMvcAutoConfiguration为例,我们看看们需要准备哪些东
西,下面是WebMvcAutoConfiguration的部分代码:
我们可以抽取到我们自定义starter时同样需要的一些配置。
三、自定义starter实例
我们需要先创建一个父maven项目:springboot_custome_starter
两个Module: tu-spring-boot-starter 和 tu-spring-boot-starter-autoconfigurer
springboot_custome_starter
pom.xml
父maven项目的pom.xml
autoconfiguration.pom.xml
starter的pom.xml
2. HelloProperties
3. IndexController
4. HelloAutoConfitguration
5. spring.factories
在 resources 下创建文件夹 META-INF 并在 META-INF 下创建文件
spring.factories ,内容如下:
到这儿,我们的配置自定义的starter就写完了 ,我们hello-spring-bootstarter-autoconfigurer、hello-spring-boot-starter 安装成本地jar包。
三、测试自定义starter
我们创建个Module: 12_springboot_starter,来测试系我们写的stater。
- pom.xml
还要在模块上在application.yml加上
2.浏览
http://localhost:8080/