美文网首页程序员
zuul基于nacos配置中心实现动态刷新

zuul基于nacos配置中心实现动态刷新

作者: Forest_QAQ | 来源:发表于2019-12-20 15:12 被阅读0次

    在网关项目中增加如下配置:

    @Configuration
    public class ZuulConfig {
       @Bean(name="zuul.CONFIGURATION_PROPERTIES")
        @RefreshScope
        @ConfigurationProperties("zuul")
        @Primary
        public ZuulProperties zuulProperties() {
            return new ZuulProperties();
        }
    }
    

    将zuul网关路由配置放入nacos中:

    QQ截图20191220152114.png

    然后通过nacos进行发布,即可实现动态刷新网关路由

    相关文章

      网友评论

        本文标题:zuul基于nacos配置中心实现动态刷新

        本文链接:https://www.haomeiwen.com/subject/djkinctx.html