目录

  • ​​1、新建一个工程​​
  • ​​2、pom依赖​​
  • ​​3、定义一个实体类映射配置信息​​
  • ​​4、定义一个Service​​
  • ​​5,定义一个配置类​​
  • ​​ 6、最重要的来了​​
  • ​​ 7、测试​​

 


一、码前必备知识

1、SpringBoot starter机制

  SpringBoot中的starter是一种非常重要的机制,能够抛弃以前繁杂的配置,将其统一集成进starter,应用者只需要在maven中引入starter依赖,SpringBoot就能自动扫描到要加载的信息并启动相应的默认配置。starter让我们摆脱了各种依赖库的处理,需要配置各种信息的困扰。SpringBoot会自动通过classpath路径下的类发现需要的Bean,并注册进IOC容器。SpringBoot提供了针对日常企业应用研发各种场景的spring-boot-starter依赖模块。所有这些依赖模块都遵循着约定成俗的默认配置,并允许我们调整这些配置,即遵循“约定大于配置”的理念。

2、为什么要自定义starter

  在我们的日常开发工作中,经常会有一些独立于业务之外的配置模块,我们经常将其放到一个特定的包下,然后如果另一个工程需要复用这块功能的时候,需要将代码硬拷贝到另一个工程,重新集成一遍,麻烦至极。如果我们将这些可独立于业务代码之外的功配置模块封装成一个个starter,复用的时候只需要将其在pom中引用依赖即可,SpringBoot为我们完成自动装配,简直不要太爽。

3、自定义starter的案例

  以下案例由笔者工作中遇到的部分场景

  ▲ 动态数据源。

  ▲ 登录模块。

  ▲ 基于AOP技术实现日志切面。

  。。。。。。

4、自定义starter的命名规则

  SpringBoot提供的starter以​​spring-boot-starter-xxx​​​的方式命名的。官方建议自定义的starter使用​​xxx-spring-boot-starter​​命名规则。以区分SpringBoot生态提供的starter。

5、代码地址

  ​​https://github.com/hello-shf/demo-spring-boot-starter.git​​ simple分支哦

二、starter的实现方法

​​回到顶部​​

1、新建一个工程

  命名为demo-spring-boot-starter

  下图为工程目录结构

  

SpringBoot自定义starter_自定义

​​回到顶部​​

2、pom依赖

1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>2.1.4.RELEASE</version>
9 </parent>
10 <groupId>com.demo</groupId>
11 <artifactId>demo-spring-boot-starter</artifactId>
12 <version>0.0.1-RELEASE</version>
13 <name>demo-spring-boot-starter</name>
14 <description>Demo project for Spring Boot</description>
15
16 <properties>
17 <java.version>1.8</java.version>
18 </properties>
19
20 <dependencies>
21
22 <dependency>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-configuration-processor</artifactId>
25 <optional>true</optional>
26 </dependency>
27
28 <dependency>
29 <groupId>org.springframework.boot</groupId>
30 <artifactId>spring-boot-starter</artifactId>
31 </dependency>
32 </dependencies>
33 </project>


 

 

​​回到顶部​​

3、定义一个实体类映射配置信息


 @ConfigurationProperties(prefix = "demo") 它可以把相同前缀的配置信息通过配置项名称映射成实体类,比如我们这里指定 prefix = "demo" 这样,我们就能将以demo为前缀的配置项拿到了。 ps:其实这个注解很强大,它不但能映射成String或基本类型的变量。还可以映射为List,Map等数据结构。

1 package com.demo.starter.properties;
2
3 import org.springframework.boot.context.properties.ConfigurationProperties;
4
5 /**
6 * 描述:配置信息 实体
7 *
8 * @Author shf
9 * @Date 2019/5/7 22:08
10 * @Version V1.0
11 **/
12 @ConfigurationProperties(prefix = "demo")
13 public class DemoProperties {
14 private String sayWhat;
15 private String toWho;
16
17 public String getSayWhat() {
18 return sayWhat;
19 }
20
21 public void setSayWhat(String sayWhat) {
22 this.sayWhat = sayWhat;
23 }
24
25 public String getToWho() {
26 return toWho;
27 }
28
29 public void setToWho(String toWho) {
30 this.toWho = toWho;
31 }
32 }


 

 

​​回到顶部​​

4、定义一个Service

1 package com.demo.starter.service;
2
3 /**
4 * 描述:随便定义一个Service
5 *
6 * @Author shf
7 * @Date 2019/5/7 21:59
8 * @Version V1.0
9 **/
10 public class DemoService {
11 public String sayWhat;
12 public String toWho;
13 public DemoService(String sayWhat, String toWho){
14 this.sayWhat = sayWhat;
15 this.toWho = toWho;
16 }
17 public String say(){
18 return this.sayWhat + "! " + toWho;
19 }
20 }


 

 

​​回到顶部​​

5,定义一个配置类

这里,我们将DemoService类定义为一个Bean,交给Ioc容器。

▲  @Configuration 注解就不多说了。

▲  @EnableConfigurationProperties 注解。该注解是用来开启对3步骤中 @ConfigurationProperties 注解配置Bean的支持。也就是@EnableConfigurationProperties注解告诉Spring Boot 能支持@ConfigurationProperties。

当然了,也可以在 @ConfigurationProperties 注解的类上添加 @Configuration 或者  @Component 注解

▲  @ConditionalOnProperty 注解控制 @Configuration 是否生效。简单来说也就是我们可以通过在yml配置文件中控制 @Configuration 注解的配置类是否生效。

 

1 package com.demo.starter.config;
2
3 import com.demo.starter.properties.DemoProperties;
4 import com.demo.starter.service.DemoService;
5 import org.springframework.beans.factory.annotation.Autowired;
6 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
7 import org.springframework.boot.context.properties.EnableConfigurationProperties;
8 import org.springframework.context.annotation.Bean;
9 import org.springframework.context.annotation.Configuration;
10
11 /**
12 * 描述:配置类
13 *
14 * @Author shf
15 * @Date 2019/5/7 21:50
16 * @Version V1.0
17 **/
18 @Configuration
19 @EnableConfigurationProperties(DemoProperties.class)
20 @ConditionalOnProperty(
21 prefix = "demo",
22 name = "isopen",
23 havingValue = "true"
24 )
25 public class DemoConfig {
26 @Autowired
27 private DemoProperties demoProperties;
28
29 @Bean(name = "demo")
30 public DemoService demoService(){
31 return new DemoService(demoProperties.getSayWhat(), demoProperties.getToWho());
32 }
33 }


 

​​回到顶部​​

 6、最重要的来了

如图,新建META-INF文件夹,然后创建spring.factories文件,

SpringBoot自定义starter_spring_02

 在该文件中加入如下配置,该配置指定上步骤中定义的配置类为自动装配的配置。(笔者努力最近把自动装配的博客写出来)


1 #-------starter自动装配--------- 2 org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.demo.starter.config.DemoConfig


​​回到顶部​​

 7、测试

在demo-spring-boot-starter工程中执行mvn clean install 一个自定义的starter新鲜出炉。

新建测试工程

引入starter依赖

1         <dependency>
2 <groupId>com.demo</groupId>
3 <artifactId>demo-spring-boot-starter</artifactId>
4 <version>0.0.1-RELEASE</version>
5 </dependency>

 

配置文件


1 demo.isopen=true 2 demo.say-what=hello 3 demo.to-who=shf


 

然后写个测试类。

1 package com.example.test.controller;
2
3 import com.demo.starter.service.DemoService;
4 import org.springframework.web.bind.annotation.GetMapping;
5 import org.springframework.web.bind.annotation.RestController;
6
7 import javax.annotation.Resource;
8
9 /**
10 * 描述:
11 *
12 * @Author shf
13 * @Description TODO
14 * @Date 2019/5/13 15:52
15 * @Version V1.0
16 **/
17 @RestController
18 public class DemoController {
19 @Resource(name = "demo")
20 private DemoService demoService;
21
22 @GetMapping("/say")
23 public String sayWhat(){
24 return demoService.say();
25 }
26
27 }

 

 浏览器

SpringBoot自定义starter_spring_03

 

SpringBoot高级-自动配置之自定义starter

前言:前面已经介绍了自动配置的很多原理,现在我们着手自己定义一个starter。

需求:自定义redis-starter,要求当导入redis坐标后,SpringBoot自动创建Jedis的Bean。正式开始之前,我们可以查看Mybatis的起步依赖是如果实现自动配置的。我这里就省略了,大家根据之前的分析文章,自己看源码即可。

一、先创建一个SpringBoot工程redis-spring-boot-autoconfigure,该工程中添加jedis依赖,并且创建一个自动配置类RedisAutoConfigure,实现jedis实例(bean)注入到IOC容器中。

/**
* @description:自定义自动配置类:将Jedis注入到IOC容器中
* @date: 2020/10/10 15:08
* @author: winson
*/
@Configuration
@EnableConfigurationProperties(RedisProperties.class)
public class RedisAutoConfigure {

/**
* 提供jedis的bean
* @param redisProperties
* @return
*/
@Bean
public Jedis jedis(RedisProperties redisProperties) {
return new Jedis(redisProperties.getHost(), redisProperties.getPort());
}

}

考虑到redis的有两个参数(host、port)必须是可以动态赋值的,所以我们自定义一个属性配置类RedisProperties,该属性配置类从配置文件获取属性值,并设置host、port属性的默认值,如下:

/**
* @description:自定义属性配置类
* @date: 2020/10/10 15:11
* @author: winson
*/
@ConfigurationProperties(prefix = "redis")
public class RedisProperties {

private String host = "127.0.0.1";

private int port = 6379;

public String getHost() {
return host;
}

public void setHost(String host) {
this.host = host;
}

public int getPort() {
return port;
}

public void setPort(int port) {
this.port = port;
}
}

@EnableConfigurationProperties注解的作用:由于自动配置类RedisAutoConfigure中,注册jedis的bean中参数需要使用到RedisProperties的bean,但无法获取到RedisProperties的bean,所以我们可以通过这个注解,手动的将该bean注入到IOC容器中。

在resources目录下按照SpringBoot自动配置目录、文件名称的规则,如下图,新建一个自己的spring.factories文件

SpringBoot自定义starter_redis_04


spring.factories文件内容:就是将自定义的自动配置类声明为名称为org.springframework.boot.autoconfigure.EnableAutoConfiguration的值,“\”的作用:换行,如果我们有多个自定义的自动配置类,这里可以用逗号分隔。

# Auto Configure
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.winson.jedis.config.RedisAutoConfigure

二、再创建一个SpringBoot工程redis-spring-boot-starter,引入redis-spring-boot-autoconfigure工程坐标。

<!--引入自定义的redis的starter-->
<dependency>
<groupId>com.winson</groupId>
<artifactId>redis-spring-boot-autoconfigure</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>

三、在测试类中引入自定义的starter,并修改引导类,做测试

<!--引入自定义的起步依赖-->
<dependency>
<groupId>com.winson</groupId>
<artifactId>redis-spring-boot-starter</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
//引导类
@SpringBootApplication
public class SpringbootEnableApplication {
public static void main(String[] args) {
ConfigurableApplicationContext context = SpringApplication.run(SpringbootEnableApplication.class, args);

Jedis jedis = context.getBean(Jedis.class);
System.out.println(jedis);
}
}

四、启动程序,测试结果,自定义stater成功。

SpringBoot自定义starter_redis_05

下面进行redis测试

一、首先启动本机的redis服务

SpringBoot自定义starter_redis_06


二、根据测试,修改引导类,向redis中存储数据,并取值

@SpringBootApplication
public class SpringbootEnableApplication {

public static void main(String[] args) {
ConfigurableApplicationContext context = SpringApplication.run(SpringbootEnableApplication.class, args);

Jedis jedis = context.getBean(Jedis.class);
jedis.set("username", "dufu");

String username = jedis.get("username");
System.out.println("username=" + username);
}
}

三、启动程序,测试结果,也成功。

SpringBoot自定义starter_spring_07

下面测试修改redis连接信息,测试结果

一、测试类中添加redis的配置信息(根据属性配置类 RedisProperties 的设置进行定义),将port的连接端口,故意写错,如下:

redis:
host: 127.0.0.1
port: 6666

二、启动程序,测试结果:发现无法再连接到redis服务器了,说明我们设置的属性配置类RedisProperties 是生效的

SpringBoot自定义starter_spring_08


三、如果我们将连接信息修改正确,再启动,也是没有问题的

SpringBoot自定义starter_自定义_09

最后,我们可以使用Condition将我们自定义的自动配置类完善一下,使用@ConditionalOnClass(Jedis.class)与@ConditionalOnMissingBean(name = "jedis"),具体的释义,我就不解释。

/**
* @description:自定义自动配置类:将Jedis注入到IOC容器中
* @date: 2020/10/10 15:08
* @author: winson
*/
@Configuration
@EnableConfigurationProperties(RedisProperties.class)
@ConditionalOnClass(Jedis.class)
public class RedisAutoConfigure {
/**
* 提供jedis的bean
* @param redisProperties
* @return
*/
@Bean
@ConditionalOnMissingBean(name = "jedis")
public Jedis jedis(RedisProperties redisProperties) {
return new Jedis(redisProperties.getHost(), redisProperties.getPort());
}
}

小结:如此,我们并完成了自定义starter的示例