springboot自定义starter启动器的具体使用实践
目录
- 第一步、创建 xxx-spring-boot-starter 的spring Initializr模块
- 第二步、删除不需要的内容(启动类、除下面spring-boot-starter的其它依赖,maven编译插件)
- 第三步、写代码,对外提供一些自己写的类
- 第四步、在resources资源文件夹下创建一个
META-INF
文件夹,并创建一个spring.factories
文件 - 第五步、将该项目发布的maven仓库,或者安装到本地仓库中让其它项目能使用的到
- 第六步、测试自己定义的启动器使用有效
第一步、创建 xxx-spring-boot-starter 的spring Initializr模块
文章图片
文章图片
文章图片
文章图片
第二步、删除不需要的内容(启动类、除下面spring-boot-starter的其它依赖,maven编译插件)
org.springframework.boot spring-boot-starter
如下是完整的
pom.xml
实际上如果当前
starter
需要引用其它依赖加入到dependences里面即可,这里只做演示项目4.0.0 org.springframework.boot spring-boot-starter-parent2.3.4.RELEASE top.huashengshu my-spring-boot-starter0.0.1-SNAPSHOT my-spring-boot-starter Demo project for Spring Boot 11 org.springframework.boot spring-boot-starter
项目结构截图
文章图片
第三步、写代码,对外提供一些自己写的类 创建
HelloProperties.java
,直接复制下面代码,然后选择包进行粘贴,Idea会自动创建对应类代码设置好包名import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = "hello") // 对外提供的前缀,相当于其它引入当前starter在properties文件使用hello.属性即可对下面属性进行赋值public class HelloProperties {private String prefix; // 成员属性,意思是前缀名private String suffix; // 成员属性,意思是后缀名public String getPrefix() {return prefix; }public void setPrefix(String prefix) {this.prefix = prefix; }public String getSuffix() {return suffix; }public void setSuffix(String suffix) {this.suffix = suffix; }}
创建
HelloService.java
直接复制下面代码,选择包进行粘贴即可生成public class HelloService {HelloProperties helloProperties; public HelloProperties getHelloProperties() {return helloProperties; }public void setHelloProperties(HelloProperties helloProperties) {this.helloProperties = helloProperties; }public String sayHello(String name){return helloProperties.getPrefix() +" "+name +" "+helloProperties.getSuffix(); }}
创建配置类(和前面一样复制粘贴即可)
HelloServiceAutoConfiguration.java
,将HelloService注入到IOC容器中import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration@ConditionalOnWebApplication// 条件配置类,该注解表示在web环境下才生效,相关的其它条件可以使用@ConditionXXX@EnableConfigurationProperties(HelloProperties.class) // 表示HelloProperties作为配置类使用public class HelloServiceAutoConfiguration {@AutowiredHelloProperties helloProperties; // 作为配置类目的就是想在sayHello方法返会的字符串加上前缀和后缀@Beanpublic HelloService helloService() { // 将HelloService注入到IOC容器HelloService service = new HelloService(); service.setHelloProperties(helloProperties); return service; }}
第四步、在resources资源文件夹下创建一个
META-INF
文件夹,并创建一个spring.factories
文件
如下面截图文章图片
内容则是将@Configuration配置类加入,目的是将配置加入到外部的IOC容器中
org.springframework.boot.autoconfigure.EnableAutoConfiguration=
idea中右键copy–》copy reference,将复制的值填入上面
=
右边注意:如果有多个AutoConfiguration则用逗号分开,还有回车小心前面的空格,最好没有其它字符。
文章图片
例如:
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\top.huashengshu.myspringbootstarter.HelloServiceAutoConfiguration,\top.yumbo.music.starter.configuration.YumboMusicAutoConfiguration
第五步、将该项目发布的maven仓库,或者安装到本地仓库中让其它项目能使用的到 本地安装为例:
文章图片
成功后即可
文章图片
第六步、测试自己定义的启动器使用有效 创建一个springboot项目
勾选web模块即可,然后加入自定义启动器的gav依赖
在启动类中加入内部类(这里为了方便演示不按照规范创建包)
如下示例代码
启动类
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import top.huashengshu.myspringbootstarter.HelloService; @SpringBootApplicationpublic class DemoApplication { @RestControllerpublic class HelloController {@AutowiredHelloService helloService; // 注入HelloService@GetMapping("/hello") // 暴露一个/hello 请求路径对外提供服务public String hello(){return helloService.sayHello("zhang san"); // 返回带有前缀和后缀中间是 "zhang san"的字符串}}public static void main(String[] args) {SpringApplication.run(DemoApplication.class, args); }}
properties文件
因为使用了
@ConfigurationProperties(prefix = "hello")
注解所以在当前项目的properties文件中使用hello前缀调用即可对成员属性赋值文章图片
如下
hello.prefix=HUASHENGSHUhello.suffix=Hello World
运行当前项目,访问
/hello
验证是否有效如下:
文章图片
说明自定义starter成功。
其它业务代码,根据自己的需求自己加入依赖,也就是说可以自己定义starter提供给其它人用!
【springboot自定义starter启动器的具体使用实践】到此这篇关于springboot自定义starter启动器的具体使用实践的文章就介绍到这了,更多相关springboot自定义starter启动器内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- Activiti(一)SpringBoot2集成Activiti6
- SpringBoot调用公共模块的自定义注解失效的解决
- python自定义封装带颜色的logging模块
- 解决SpringBoot引用别的模块无法注入的问题
- 列出所有自定义的function和view
- springboot使用redis缓存
- Spring|Spring Boot 自动配置的原理、核心注解以及利用自动配置实现了自定义 Starter 组件
- 自定义MyAdapter
- springboot整合数据库连接池-->druid
- Android自定义view实现圆环进度条效果