真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Apollo中怎么使用springboot實(shí)現(xiàn)動(dòng)態(tài)刷新

Apollo 中怎么使用springboot實(shí)現(xiàn)動(dòng)態(tài)刷新,針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

創(chuàng)新互聯(lián)于2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢想脫穎而出為使命,1280元泗水做網(wǎng)站,已為上家服務(wù),為泗水各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792

一、普通字段刷新

在需刷新的字段上配置@Value注解,如:

@Value("${ve.auth-url}")
private String authUrl;

二、bean使用@ConfigurationProperties動(dòng)態(tài)刷新

bean使用@ConfigurationProperties注解目前還不支持自動(dòng)刷新,需要編寫額外的代碼。目前官方提供2種刷新方案

  • 基于RefreshScope實(shí)現(xiàn)刷新

  • 基于EnvironmentChangeEvent實(shí)現(xiàn)刷新

項(xiàng)目選用基于RefreshScope實(shí)現(xiàn)刷新。

1.bean上使用@RefreshScope注解
@ConfigurationProperties(prefix = "partners")
@Component("partnersConfig")
@RefreshScope
@Slf4j
@Data
public class PartnersConfig {
    private List fundProviders = Lists.newArrayList();
    private List logisticsCompanies = Lists.newArrayList();
    private List insuranceCompanies = Lists.newArrayList();
}
2.利用RefreshScope搭配@ApolloConfigChangeListener監(jiān)聽實(shí)現(xiàn)bean的動(dòng)態(tài)刷新

其代碼實(shí)現(xiàn)如下:

@Component
@Slf4j
public class ApolloRefreshConfig {
    private final PartnersConfig partnersConfig;
    private final AnXinSignProperty anXinSignProperty;
    private final RefreshScope refreshScope;
    public ApolloRefreshConfig(final PartnersConfig partnersConfig,
                               final AnXinSignProperty anXinSignProperty,
                               final RefreshScope refreshScope) {
        this.partnersConfig = partnersConfig;
        this.anXinSignProperty = anXinSignProperty;
        this.refreshScope = refreshScope;
    }
    /**
     * 記錄配置更改事件
     *
     * @param changeEvent 配置更改事件
     * @return void
     * @author xux
     * @date 2021/4/9
     */
    public static void printChange(ConfigChangeEvent changeEvent) {
        Set changeKeys = changeEvent.changedKeys();
        if (!CollectionUtils.isEmpty(changeKeys)) {
            for (String changeKey : changeKeys) {
                ConfigChange configChange = changeEvent.getChange(changeKey);
                log.info("apollo changed , key:" + changeKey + "; old value:" + configChange.getOldValue() + "; new value:" + configChange.getNewValue());
            }
        }
    }
    /**
     * 監(jiān)聽partner配置更改,value為監(jiān)聽的配置文件
     *
     * @param configChangeEvent 配置更改事件
     * @return void
     * @author xux
     * @date 2021/4/9
     */
    @ApolloConfigChangeListener(value = {"fund-provider-partners.properties", "insurance-companie-partners.properties", "logistics-company-partners.properties"})
    private void refreshPartnersConfig(ConfigChangeEvent configChangeEvent) {
        printChange(configChangeEvent);
        log.info("before refresh {}", partnersConfig.toString());
        refreshScope.refresh("partnersConfig");
        log.info("after refresh {}", partnersConfig.toString());
    }
    /**
     * 監(jiān)聽安心簽配置更改,value默認(rèn)監(jiān)聽application
     *
     * @param configChangeEvent 配置更改事件
     * @return void
     * @author xux
     * @date 2021/4/9
     */
    @ApolloConfigChangeListener(interestedKeyPrefixes = "spring.cfca.anxinsign")
    private void refreshAnXinSignProperty(ConfigChangeEvent configChangeEvent) {
        printChange(configChangeEvent);
        log.info("before refresh {}", anXinSignProperty.toString());
        refreshScope.refresh("anXinSignProperty");
        log.info("after refresh {}", anXinSignProperty.toString());
    }
}

關(guān)于Apollo 中怎么使用springboot實(shí)現(xiàn)動(dòng)態(tài)刷新問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。


網(wǎng)站標(biāo)題:Apollo中怎么使用springboot實(shí)現(xiàn)動(dòng)態(tài)刷新
網(wǎng)頁URL:http://weahome.cn/article/gigedo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部