本文共 1156 字,大约阅读时间需要 3 分钟。
在git端修改配置后如何让客户端生效?
需要JAVA Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码 一零三八七七四六二六
访问接口修改refreshpost方式执行 会刷新env中的配置restart如果配置信息已经注入到bean中,由于bean是单例的,不会去加载修改后的配置需要通过post方式去执行需要通过application.properties中配置endpoints.restart.enabled=true启动指定的端口弊端: 通过restart耗时比较长,因此就有了RefreshScopeRefreshScopepackage com.lkl.springcloud.config.client;import org.springframework.beans.factory.annotation.Value;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.EnableAutoConfiguration;import org.springframework.cloud.context.config.annotation.RefreshScope;import org.springframework.context.annotation.ComponentScan;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;/** * Created by liaokailin on 16/4/28. */@EnableAutoConfiguration@ComponentScan@RestController@RefreshScopepublic class Application { @Value("${name:World!}") String name ; @RequestMapping("/") public String home(){ return "Hello " + name; } public static void main(String[] args) { SpringApplication.run(Application.class,args); }}
在执行refresh时会刷新bean中变量值。
转载地址:http://bksoa.baihongyu.com/