之所以说这个话题,是因为在实际开发过程中有些小伙伴不想使用nacos-server配置中心的配置,把pom中的nacos-config依赖注释掉了,关键还提交到测试环境了,所以在这里提一下。其实这个很简单,通过spring.cloud.nacos.config.enabled这个配置就可以控制,这个值默认为true,即引入nacos-config依赖后就会默认启动获取nacos-server配置中心数据的功能,所以只需要将spring.cloud.nacos.config.enabled=false这样就可以,具体是怎么工作的,看下
代码语言:javascript复制NacosConfigAutoConfiguration这个类就可以,使用springboot的小伙伴一定对xxxAutoConfigration类不会陌生:
代码语言:javascript复制@Configuration(proxyBeanMethods = false)
@ConditionalOnProperty(name = "spring.cloud.nacos.config.enabled", matchIfMissing = true)
public class NacosConfigAutoConfiguration {
@Bean
public NacosConfigProperties nacosConfigProperties(ApplicationContext context) {
if (context.getParent() != null
&& BeanFactoryUtils.beanNamesForTypeIncludingAncestors(
context.getParent(), NacosConfigProperties.class).length > 0) {
return BeanFactoryUtils.beanOfTypeIncludingAncestors(context.getParent(),
NacosConfigProperties.class);
}
return new NacosConfigProperties();
}
@Bean
public NacosRefreshProperties nacosRefreshProperties() {
return new NacosRefreshProperties();
}
@Bean
public NacosRefreshHistory nacosRefreshHistory() {
return new NacosRefreshHistory();
}
@Bean
public NacosConfigManager nacosConfigManager(
NacosConfigProperties nacosConfigProperties) {
return new NacosConfigManager(nacosConfigProperties);
}
@Bean
public NacosContextRefresher nacosContextRefresher(
NacosConfigManager nacosConfigManager,
NacosRefreshHistory nacosRefreshHistory) {
// Consider that it is not necessary to be compatible with the previous
// configuration
// and use the new configuration if necessary.
return new NacosContextRefresher(nacosConfigManager, nacosRefreshHistory);
}
}
使用nacos-config功能时一般将下面的配置加到bootstrap.yaml文件即可:
代码语言:javascript复制#配置中心
spring:
cloud:
nacos:
config:
enabled: ${NACOS_CONFIG_ENABLED:true}
server-addr: ${NACOS_CONFIG_SERVER_ADDR:}
file-extension: ${NACOS_CONFIG_FILE_EXTENSION:yaml}
group: ${NACOS_CONFIG_GROUP:DEFAULT_GROUP}
namespace: ${NACOS_CONFIG_NAME_SPACE:}
然后将其他一些配置放在application.yaml文件中,笔者的习惯是将application.yaml中的配置拆分为不变部分与变化部分,这样在nacos-server配置页面只须配置变化部分即可: