一、前言
使用动态配置的原因: properties 和 yaml 是写到项目中的,好多时候有些配置需要修改,每次修改就要重新启动项目,不仅增加了系统的不稳定性,也大大提高了维护成本,非常麻烦,且耗费时间。 使用动态配置,则可以避免这些麻烦,可以动态的修改配置,不需要重新启动项目。 nacos配置中心,可以使得配置标准化、格式统一化,当配置信息发生变动时,修改实时生效,无需要重新重启服务器,就能够自动感知相应的变化,并将新的变化统一发送到相应程序上,快速响应变化。
本次环境使用版本:NACOS1.4.2; spring-boot 2.3.9.RELEASE;nacos-config-spring-boot-starter 0.2.1
二、在 nacos 上创建配置文件
2.1 在默认命名空间中,创建一个配置文件
2.2 配置说明:
- Data ID —— 用于项目读取名称,spring-nacos 动态配置命名规范为 :{prefix}-{spring.profiles.active}.{file-extension}
- prefix 默认为 spring.application.name 的值,也可以通过配置项 spring.cloud.nacos.config.prefix来配置。
- spring.profiles.active 即为当前环境对应的 profile,就是环境的命名,比如 test 环境, dev 环境;spring.profiles.active 可以为空,为空着不区分环境信息,dataId 的拼接格式变成 {prefix}.{file-extension}。
- file-exetension 为配置内容的数据格式,一般常用 properties 和 yaml 类型。
说明:
- 我这次修改的项目是网关,项目名称 :gateway(spring.application.name= gateway)
- 没有使用环境配置
- 所以 nacos 的配置文件为: {prefix}.{file-extension} 即 gateway.yml
- 如果有配置环境的,可以为 {prefix}-{spring.profiles.active}.{file-extension} 即 gateway-dev.yml
本次配置文件名称为 gateway.yml
注意: 项目启动时,nacos-config 会自动加载以下文件,故以下文件名称都可以作为默认动态配置的文件格式。
- icp-gateway-dev.yml,icp-gateway.yml,icp-gateway,(说明,这三个文件,可以指定命名 nacos 分组)
- common.yml (该文件为默认分组,DEFAULT_GROUP)
添加测试使用的配置 nacosConfigDemmo: NAME1
说明: 本次配置项目,分组名称为 ICP_PLATFORM (注意:分组名称建议使用下划线 _ ,不建议使用 中横线 - ,中横线会有几率出现不能读取的问题,使用连接符请注意使用;分组名可以自定,如果要区分命名空间,需要到 nacos 命名空间 中新建 命名空间)
2.3 发布并检查配置文件
- 编辑完成之后,直接点击发布,会提示新建完成
- 点击确定,然后点击返回配置中心,在配置列表中能找到自己的配置文件,确保文件内容正确即可
至此,配置文件完成,接下来在项目中使用这个配置文件。
三、 修改修改项目配置,动态读取配置文件
3.1 添加 nacos 动态配置依赖
在 pom.xml 文件中,添加依赖。
<dependency>
<groupId>com.alibaba.boot</groupId>
<artifactId>nacos-config-spring-boot-starter</artifactId>
<version>0.2.1</version>
</dependency>
修改项目配置文件,读取 nacos 中的配置内容
server:
port: 7200
spring:
application:
name: gateway
profiles:
active: dev
cloud:
nacos:
config:
server-addr: 127.0.0.1:8848
file-extension: yml
group: ICP_PLATFORM
3.2 在 controller 与 service 中使用动态配置
controller 代码:
import com.insupro.search2.service.IIndexService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/api/demo")
public class nacosConfigDemmo {
@Autowired
private DemoService demoService;
@GetMapping("/name")
public Object showDemoName(){
return demoService.showDemoName();
}
}
service 接口代码:
public interface IIndexService {
Object showDemoName();
}
service 实现代码:
import com.insupro.search2.service.demoService;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Service;
@Service
@RefreshScope
public class demoServiceImpl implements demoService{
@Value("${nacosConfigDemmo}")
private String demoName;
@Override
public Object showDemoName(){
return demoName;
}
}
运行,请求接口地址,得到响应值: postman 请求,第一次响应,值为 NAME2 修改 nacos 配置文件,将 nacosConfigDemmo: NAME1 改为 nacosConfigDemmo: NAME2 并发布 等待控制台打印: Refresh keys changed: [nacosConfigDemmo],则动态配置已经生效 再次请求,发现返回值已经改变: 请求结果,NAME1 已经变成 NAME2,项目不需要重启,动态配置已经生效。
四、 动态配置网关的使用
4.1 导入配置,网关不进行权限校验的路径
获取配置文件,生成 bean
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
@Setter
@Getter
@ConfigurationProperties(prefix = "security.ignore")
@RefreshScope
public class SecurityProperties {
private PermitProperties ignore = new PermitProperties();
}
配置文件实体类
import lombok.Getter;
import lombok.Setter;
@Setter
@Getter
public class PermitProperties {
private String[] httpUrls = {};
public String[] getUrls() {
if (httpUrls == null || httpUrls.length == 0) {
return new ArrayList<>();
}
List<String> list = new ArrayList<>();
for (String url : httpUrls) {
list.add(url);
}
return list.toArray(new String[list.size()]);
}
}
至此,导入自动配置完成,可以根据自己的业务代码进行网关的配置与使用。 但是!!注意!! 如果在配置文件中调用配置,则需要在配置文件中使用 @RefreshScope 注解,用于刷新配置。因为配置文件在项目启动时便已经完成加载。
例如:
@Configuration
public class ResourceServerConfiguration {
@Autowired
private SecurityProperties securityProperties;
@Bean
@Autowired(required = false)
@RefreshScope
SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
if (securityProperties.getIgnore().getUrls().length > 0) {
authorizeExchange.pathMatchers(securityProperties.getIgnore().getUrls()).permitAll();
}
return http.build();
}
}
|