栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 前沿技术 > 大数据 > 大数据系统

@RefreshScope动态配置,不重启服务使配置文件生效

@RefreshScope动态配置,不重启服务使配置文件生效

写在开始:一个搬砖程序员的随缘记录

文章目录

一、项目配置

1、加入依赖2、加入配置3、配置类4、controller

一、项目配置 1、加入依赖

   org.springframework.boot
    spring-boot-starter-actuator
 
2、加入配置

application.yml

#使热配置生效
management:
  endpoints:
    web:
      exposure:
        include: refresh
#自定义更新参数        
config:
  name: admin
3、配置类
package com.cn.easycode.config;

import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.annotation.ScopedProxyMode;
import org.springframework.stereotype.Component;


@RefreshScope
@Component
@Data
@ConfigurationProperties(prefix = "config")
public class ValueConfig {

    private String uuid;
}
4、controller
package com.cn.easycode.controller;

import com.cn.easycode.config.ValueConfig;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.cloud.context.refresh.ContextRefresher;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;


@RestController
@Slf4j
public class TestController {
    @Autowired
    private ValueConfig valueConfig;

    @Autowired
    private ContextRefresher contextRefresher;

    
    @RequestMapping(path = "/show")
    public String show() {
        return valueConfig.getUuid();
    }


    
    @RequestMapping(path = "/refresh")
    public String refresh() throws Exception {
        new Thread(() -> contextRefresher.refresh()).start();
        return show();
    }
}

启动项目修改配置就可以看到效果

Over

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/711155.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号