Nacos配置管理-配置热更新
生活随笔
收集整理的這篇文章主要介紹了
Nacos配置管理-配置热更新
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
配置熱更新
我們最終的目的,是修改nacos中的配置后,微服務(wù)中無(wú)需重啟即可讓配置生效,也就是配置熱更新。
要實(shí)現(xiàn)配置熱更新,可以使用兩種方式:
方式一
在@Value注入的變量所在類(lèi)上添加注解@RefreshScope:
方式二
使用@ConfigurationProperties注解代替@Value注解。
在user-service服務(wù)中,添加一個(gè)類(lèi),讀取patterrn.dateformat屬性:
import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component;@Component @Data @ConfigurationProperties(prefix = "pattern") public class PatternProperties {private String dateformat; }?在UserController中使用這個(gè)類(lèi)代替@Value:
?完整代碼:
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 {@Autowiredprivate UserService userService;@Autowiredprivate PatternProperties patternProperties;@GetMapping("now")public String now(){return LocalDateTime.now().format(DateTimeFormatter.ofPattern(patternProperties.getDateformat()));}// 略 }總結(jié)
以上是生活随笔為你收集整理的Nacos配置管理-配置热更新的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Nacos配置管理-微服务配置拉取
- 下一篇: Eureka-搭建eureka服务