如何自定义一个SpringBoot Srarter
前言:
上一期我们通过学习知道了自动配置原理,其实创建一个自定义SpringBoot Starter也很简单。
目录
如何自定义一个SpringBoot Srarter?
首先创建一个项目,命名为demo-spring-boot-starter,引入SpringBoot相关依赖
编写配置文件
自动装配
配置自动类
测试
如何自定义一个SpringBoot Srarter?首先创建一个项目,命名为demo-spring-boot-starter,引入SpringBoot相关依赖
<dependency>编写配置文件
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
这里定义了属性配置的前缀
@ConfigurationProperties(prefix = "hello")自动装配
public class HelloProperties {
private String name;
//省略getter、setter
}
创建自动配置类HelloPropertiesConfigure
@Configuration配置自动类
@EnableConfigurationProperties(HelloProperties.class)
public class HelloPropertiesConfigure {
}
在/resources/META-INF/spring.factories
文件中添加自动配置类路径
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\测试
cn.fighter3.demo.starter.configure.HelloPropertiesConfigure
至此,随手写的一个自定义SpringBoot-Starter就完成了,虽然比较简单,但是完成了主要的自动装配的能力。
创建一个工程,引入自定义starter依赖<dependency>在配置文件里添加配置
<groupId>cn.fighter3</groupId>
<artifactId>demo-spring-boot-starter</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
hello.name=张三测试类
@RunWith(SpringRunner.class)运行结果编辑运行结果本期分享到此为止,关注博主不迷路,叶秋学长带你上高速~~
@SpringBootTest
public class HelloTest {
@Autowired
HelloProperties helloProperties;
@Test
public void hello(){
System.out.println("你好,"+helloProperties.getName());
}
}
版权声明
本文仅代表作者观点,不代表博信信息网立场。