springboot自定义starter

项目结构如下图:

springboot自定义starter

 废话不多说,直接开干!!!

1、创建一个父maven项目:springboot_custome_starterspringboot自定义starter

2、创建两个Module:demo-spring-boot-starter,demo-spring-boot-starter-autoconfigurer。pom配置分别如下图:springboot自定义starterspringboot自定义starter3、写一个属性配置类:HelloPropertiesspringboot自定义starter 4、写一个测试接口:IndexControllerspringboot自定义starter5、 写一个自动配置类:HelloAutoConfitgurationspringboot自定义starter6、在resources下新建目录META-INF,然后创建spring.factories文件。不知道为什么要这么搞的,补一下springboot自动配置原理springboot自定义starter7、将Module安装到本地maven仓库

springboot自定义starter

到这里自定义starter就完成了,下面测试走起!!!

8、创建一个springboot测试项目:test(忽略名字,有点不规范,哈哈)springboot自定义starter 9、引入自定义的starterspringboot自定义starter10、启动项目访问一下,卧槽搞到这里好像翻车了!!!没事接着干。自动配置类配置了@ConfigurationProperties("chengdu.hello"),但我们还没配置,所以。。。

springboot自定义starter11、配置application.propertiesspringboot自定义starter12、再来访问一下springboot自定义starter

 到这里一个简单的自定义starter就全部搞定了!!!

上一篇:JavaWeb学习笔记-part11-SpringBoot-基础篇


下一篇:Spring Boot自动装配原理,SpringBootStarter