Nacos除了可以做注册中心,同样可以做配置管理来使用。
1.1.在nacos中添加配置文件
然后在弹出的表单中,填写配置信息:
1.2.从微服务拉取配置
1)引入nacos-config依赖
<!--nacos配置管理依赖-->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
2)添加配置文件bootstrap.yaml,这个文件是引导文件,优先级高于application.yml:
spring:
application:
name: userservice # 服务名称
profiles:
active: dev #开发环境,这里是dev
cloud:
nacos:
server-addr: localhost:8848 # Nacos地址
config:
file-extension: yaml # 文件后缀名
3)读取nacos配置
需要加一个注解,表示把配置内容注入
@Value("${pattern.dateformat:}")
private String dateformat;
2、配置热更新
方式一:使用注解
在@Value注入的变量所在类上添加注解@RefreshScope:
方式二:使用配置类
新建一个配置类,对应配置文件
package com.itheima.user.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@Data
@ConfigurationProperties(prefix = "pattern")//表示和pattern对应
public class PatternProperties {
private String dateformat;//和pattern下边的子属性对应
}
使用配置类替代注解时,先注入对象
package com.itheima.user.web;
import cn.itcast.user.config.PatternProperties;
import cn.itcast.user.pojo.User;
import cn.itcast.user.service.UserService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
@Slf4j
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@Autowired
private PatternProperties patternProperties;
@GetMapping("now")
public String now(){
return LocalDateTime.now().format(DateTimeFormatter.ofPattern(patternProperties.getDateformat()));
}
// 略
}
3、配置共享
只需在新增配置文件时,不指定运行环境即可
其他的都和上边一样