Springboot-05 自定义starter

Springboot-05 自定义starter
LuckyTiger说明
启动器模块是一个 空 jar 文件,仅提供辅助性依赖管理,这些依赖可能用于自动装配或者其他类库;
命名归约:
官方命名:
- 前缀:spring-boot-starter-xxx
- 比如:spring-boot-starter-web….
自定义命名:
- xxx-spring-boot-starter
- 比如:mybatis-spring-boot-starter
编写启动器
在IDEA中新建一个空项目 spring-boot-starter-diy
新建一个普通Maven模块:spring-boot-starter
新建一个Springboot模块:spring-boot-starter-autoconfigure
点击apply即可,基本结构
在我们的 starter 中 导入 autoconfigure 的依赖!
1
2
3
4
5
6
7
8
9<!-- 启动器 -->
<dependencies>
<!-- 引入自动配置模块 -->
<dependency>
<groupId>com.luckytiger</groupId>
<artifactId>luckytiger-spring-boot-starter-autoconfigure</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>将 autoconfigure 项目下多余的文件都删掉,Pom中只留下一个 starter,这是所有的启动器基本配置!
我们编写一个自己的服务
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17public 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();
}
}编写HelloProperties 配置类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import org.springframework.boot.context.properties.ConfigurationProperties;
// 前缀 zhangsan.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;
}
}编写我们的自动配置类并注入bean,测试!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//web应用生效
public class HelloServiceAutoConfiguration {
HelloProperties helloProperties;
public HelloService helloService(){
HelloService service = new HelloService();
service.setHelloProperties(helloProperties);
return service;
}
}在resources编写一个自己的 META-INF\spring.factories
1
2
3# Auto Configure
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.luckytiger.HelloServiceAutoConfiguration编写完成后,可以安装到maven仓库中!
新建项目测试我们自己写的启动器
新建一个SpringBoot 项目
导入我们自己写的启动器
1
2
3
4
5<dependency>
<groupId>com.luckytiger</groupId>
<artifactId>luckytiger-spring-boot-starter</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>编写一个 HelloController 进行测试我们自己的写的接口!
1
2
3
4
5
6
7
8
9
10
public class HelloController {
HelloService helloService;
public String hello(){
return helloService.sayHello("zxc");
}
}编写配置文件 application.properties
1
2luckytiger.hello.prefix="ppp"
luckytiger.hello.suffix="sss"启动项目进行测试,结果成功 !
评论
匿名评论隐私政策