apollo无法动态刷新ConfigurationProperties注解的类

这个问题,网上有很多解决方案,我采用的是如下这种最简单的解决方案,直接上代码:

package com.steven.schedule;

import org.apache.log4j.Logger;
import org.springframework.beans.BeansException;
import org.springframework.cloud.context.environment.EnvironmentChangeEvent;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

import com.ctrip.framework.apollo.model.ConfigChangeEvent;
import com.ctrip.framework.apollo.spring.annotation.ApolloConfigChangeListener;

/**
 * @author Steven
 * @date 2019年8月20日
 */
@Component
public class TaskSchedulePropertiesRefresher implements ApplicationContextAware {

	private static Logger logger = Logger.getLogger(TaskSchedulePropertiesRefresher.class);

	private ApplicationContext applicationContext;

	@ApolloConfigChangeListener
	public void onChange(ConfigChangeEvent changeEvent) {
		refreshTaskScheduleProperties(changeEvent);
	}

	private void refreshTaskScheduleProperties(ConfigChangeEvent changeEvent) {
		logger.info("Refreshing TaskSchedule properties!");

		// 更新相应的bean的属性值,主要是存在@ConfigurationProperties注解的bean
		this.applicationContext.publishEvent(new EnvironmentChangeEvent(changeEvent.changedKeys()));

		logger.info("TaskSchedule properties refreshed!");
	}

	@Override
	public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
		this.applicationContext = applicationContext;
	}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值