工程由xxx-sprig-boot-starter
和xxx-sprig-boot-starter-configure
两个模块组成;
xxx-sprig-boot-starter
模块
xxx-sprig-boot-starter-configure
模块,没有实际代码<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.ander</groupId> <artifactId>ander-spring-boot-starter</artifactId> <version>1.0-SNAPSHOT</version> <!--依赖ander-spring-boot-starter-configure工程--> <dependencies> <dependency> <groupId>com.ander</groupId> <artifactId>ander-spring-boot-starter-configure</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> </dependencies> </project>
xxx
-sprig-boot-starter-configure
模块
spring-boot-starter-web
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.10.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.ander</groupId> <artifactId>ander-spring-boot-starter-configure</artifactId> <version>0.0.1-SNAPSHOT</version> <name>ander-spring-boot-starter-configure</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> </project>
/** * Service层 * * @Author: Ander * @Date: 2021-05-04 */ public class HelloService { private HelloServiceProperties helloServiceProperties; public String helloService(String name) { return helloServiceProperties.getPrefix() + " "+ name + " " + helloServiceProperties.getSuffix(); } public HelloServiceProperties getHelloServiceProperties() { return helloServiceProperties; } public void setHelloServiceProperties(HelloServiceProperties helloServiceProperties) { this.helloServiceProperties = helloServiceProperties; } }
/** * 属性配置类 * * @Author: Ander * @Date: 2021-05-04 */ @ConfigurationProperties(prefix = "com.ander") public class HelloServiceProperties { private String prefix = "hi"; private String suffix = "hello world"; 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; } }
@EnableConfigurationProperties({HelloServiceProperties.class})
作用:让xxxProperties生效加入到容器中
/** * 自定义starter自动配置类 * * @Author: Ander * @Date: 2021-05-04 */ @Configuration @ConditionalOnWebApplication // 指定web应用才生效 @EnableConfigurationProperties({HelloServiceProperties.class}) public class HelloServiceAutoConfigure { @Autowired private HelloServiceProperties helloServiceProperties; @Bean public HelloService helloService() { HelloService helloService = new HelloService(); helloService.setHelloServiceProperties(helloServiceProperties); return helloService; } }
注意先安装xxx-spring-boot-starter-configure
,再安装xxx-spring-boot-starter
/** * starter测试控制类 * * @Author: Ander * @Date: 2021-05-05 */ @RestController public class StarterTestController { @Autowired private HelloService helloService; @GetMapping("hello") public String hello(String name) { return helloService.helloService(name); } }
server.port=8888
com.ander.prefix=HI
com.ander.suffix=HELLO WORLD
到此这篇关于使用Spring Boot自定义starter详解的文章就介绍到这了,更多相关Spring Boot自定义starter内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
免责声明:本站发布的内容(图片、视频和文字)以原创、来自互联网转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系QQ:712375056 进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。
Copyright © 2009-2021 56dr.com. All Rights Reserved. 特网科技 特网云 版权所有 珠海市特网科技有限公司 粤ICP备16109289号
域名注册服务机构:阿里云计算有限公司(万网) 域名服务机构:烟台帝思普网络科技有限公司(DNSPod) CDN服务:阿里云计算有限公司 中国互联网举报中心 增值电信业务经营许可证B2
建议您使用Chrome、Firefox、Edge、IE10及以上版本和360等主流浏览器浏览本网站