赞
踩
当我们想要封装一些自定义功能给别人使用的时候,创建Spring Boot Starter的形式是最好的实现方式。如果您还不会构建自己的Spring Boot Starter的话,本文将带你一起创建一个自己的Spring Boot Starter。
创建一个新的 Maven 项目。第三方封装的命名格式是 xxx-spring-boot-starter
,例如:didispace-spring-boot-starter
。
编辑pom.xml
,添加spring-boot-autoconfigure
和spring-boot-starter
依赖
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-autoconfigure</artifactId>
- </dependency>
- </dependencies>
创建一个用 @Configuration
注释的配置类,在这里您可以使用@Bean
来创建使用@ConditionalOnClass
、@ConditionalOnMissingBean
等条件注释来控制何时应用配置。
- @Configuration
- @ConditionalOnClass(MyFeature.class)
- @ConditionalOnProperty(prefix = "myfeature", name = "enabled", matchIfMissing = true)
- public class MyFeatureAutoConfiguration {
-
- @Bean
- @ConditionalOnMissingBean
- public MyFeature myFeature() {
- return new MyFeature();
- }
- }
在src/main/resources/META-INF
目录下创建spring.factories
文件,并在org.springframework.boot.autoconfigure.EnableAutoConfiguration
关键字下列出您的自动配置类,比如:
- org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
- com.didispace.myfeature.MyFeatureAutoConfiguration
该配置的作用是让Spring Boot应用在引入您自定义Starter的时候可以自动这里的配置类。
注意:Spring Boot 2.7开始,不再推荐使用
spring.factories
,而是改用/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
,文件内容直接放需要自动加载配置类路径即可。这个变更具体可见之前的这篇文章:《Spring Boot 2.7开始spring.factories不推荐使用了》:https://www.didispace.com/article/spring-boot/spring-boot-factories-deprecations.html
在制作Spring Boot Starter的时候,一定记得使用单元测试来验证和确保自动化配置类在任何条件逻辑在启动器下能够按照正确的预期运行。
使用@SpringBootTest
加载完整的应用程序上下文,并验证启动程序是否正确配置了 Bean 和属性。
- @SpringBootTest(classes = TestApplication.class)
- public class MyStarterAutoConfigurationTest {
-
- @Autowired(required = false)
- private MyService myService;
-
- @Test
- public void testMyServiceAutoConfigured() {
- assertNotNull(myService, "MyService should be auto-configured");
- }
- }
如果有不同的配置方案,那么还需要使用@TestPropertySource
或@DynamicPropertySource
覆盖属性以测试不同配置下的情况。
或者也可以直接简单的通过@SpringBootTest
中的属性来配置,比如下面这样:
- @SpringBootTest(properties = "my.starter.custom-property=customValue")
- public class MyStarterPropertiesTest {
-
- @Value("${my.starter.custom-property}")
- private String customProperty;
-
- @Test
- public void testPropertyOverride() {
- assertEquals("customValue", customProperty, "Custom property should be overridden by @SpringBootTest");
- }
- }
@Conditional
的不同分支如果您的启动器包含条件配置,比如:@ConditionalOnProperty
、@ConditionalOnClass
等注解,那么就必须编写测试来覆盖所有条件以验证是否已正确。
比如下面这样:
- @SpringBootTest(classes = {TestApplication.class, MyConditionalConfiguration.class})
- @ConditionalOnProperty(name = "my.starter.enable", havingValue = "true")
- public class MyStarterConditionalTest {
-
- @Autowired
- private ApplicationContext context;
-
- @Test
- public void conditionalBeanNotLoadedWhenPropertyIsFalse() {
- assertFalse(
- context.containsBean("conditionalBean"),
- "Conditional bean should not be loaded when 'my.starter.enable' is false"
- );
- }
- }
为了覆盖不同的条件分支,我们通常还需要使用@TestConfiguration
注解来有选择地启用或禁用某些自动配置。
本文介绍了两个Spring Boot的进阶内容:
如何创建 Spring Boot Starter
如何为 Spring Boot Starter 提供单元测试
掌握这项技能可以帮你更好的为Spring Boot提供模块划的功能封装。如果您学习过程中如遇困难?可以加入我们超高质量的Spring技术交流群 点击加群,参与交流与讨论,更好的学习与进步!最后再给大家推荐一些有关Spring Boot Starter和自动化配置的扩展阅读:
Spring Boot Starter配置spring.factories的自动生成神器:https://www.didispace.com/article/spring-boot/spring-factories-mica-auto.html
Spring Boot自动化配置的利弊及解决之道:https://www.didispace.com/spring-boot-1/9-5-autoconfig.html
你还在购买国内的各种昂贵又低质的技术教程吗?这里给大家推荐下我们自研的Youtube视频语音转换插件(https://youtube-dubbing.com/),一键外语转中文,英语不好的小伙伴也可以轻松的学习油管上的优质教程了,下面是演示视频,可以直观的感受一下:
··································
点击卡片关注我,分享一线前沿干货
点击阅读原文,直达Java新特性专栏
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。