springboot解析之启动配置原理

starter模式

1、用户引用启动器
2、启动器只用来导入核心功能
3、核心功能通过读取配置的方式获取用户的属性设置
4、暴露给用户的都是starter和配置规则,不管什么乱七八糟的功能。

步骤

1、启动器模块

在一个空项目下创建一个maven module。artifactId以固定规格命名。
这个module依赖的czy-spring-boot-starter-autoconfigurer在步骤2创建
<groupId>com.czy</groupId>
<artifactId>czy-spring-boot-starter</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<!--        启动器,引入自动配置-->
<dependency>
     <groupId>com.czy</groupId>
     <artifactId>czy-spring-boot-starter-autoconfigurer</artifactId>
     <version>0.0.1-SNAPSHOT</version>
 </dependency>
</dependencies>

2、自动配置模块

  1. 在步骤1的项目下 新建一个module,可使用spring initializr创建向导创建。只需要依赖 springboot的web模块。可把test模块去掉。
<parent>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>
	<version>2.2.1.RELEASE</version>
	<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.czy</groupId>
<artifactId>czy-spring-boot-starter-autoconfigurer</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>czy-spring-boot-starter-autoconfigurer</name>
<description>Demo project for Spring Boot</description>
<properties>
	<java.version>12</java.version>
</properties>
<dependencies>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter</artifactId>
	</dependency>
</dependencies>
  1. 在resources下新建META-INF/spring.factories文件。
    在这里插入图片描述
    spring.factories:
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.czy.HelloServiceAutoConfiguration
  1. HelloProperties.class读取用户在配置文件的配置
    用户可在自己项目的application.properties文件配置:
czy.hello.prefix=qianzhui
czy.hello.suffix=houzhui

import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "czy.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;
    }
}
  1. HelloService.class实现功能
public 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();
    }
}
  1. HelloServiceAutoConfiguration.class 把properties传给service。再把service自动注入容器
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConditionalOnWebApplication
@EnableConfigurationProperties(HelloProperties.class)
public class HelloServiceAutoConfiguration {
    @Autowired
    HelloProperties helloProperties;
    @Bean
    public HelloService helloService(){
        HelloService helloService = new HelloService();
        helloService.setHelloProperties(helloProperties);
        return helloService;
    }
}

starter代码编写完毕

3、安装到maven仓库

被依赖的模块要先安装。
在这里插入图片描述

4、使用

创建新项目来使用我们刚刚做好的starter

  1. 依赖:
 <dependency>
    <groupId>com.czy</groupId>
    <artifactId>czy-spring-boot-starter</artifactId>
    <version>1.0-SNAPSHOT</version>
</dependency>
  1. 配置:
    在这里插入图片描述
  2. 在这里插入图片描述
  3. 浏览器访问指定请求即可。
    这个starter有个问题没有解决,即czy.hello.prefix=中文 时,有乱码出现
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值