美文网首页
spring cloud @RefreshScope

spring cloud @RefreshScope

作者: 未羽出衫 | 来源:发表于2019-12-16 18:00 被阅读0次

在最近看到一些项目用@value注入配置属性,并且乱用@RefreshScope,看得有点发慌

1:sprin boot 2.0后不推荐使用@Value

所以建议将使用@ConfigurationProperties,把有共性的属性统一归类方便管理,并且配置刷新是不需要加@RefreshScope

2:@RefreshScope 不能修饰在 @Scheduled、listener、Timmer等类中

配置刷新后会卸载类,并重新实例化类(如果类中存在计数等情况需要注意)

3: 使用建议如 JavaMailSenderImpl;

邮箱密码等信息可能发生变动,增加配置刷新后会重新实例程序无需处理

  @Bean
  @RefreshScope
  @ConditionalOnMissingBean
  public JavaMailSenderImpl mailSender() {
      JavaMailSenderImpl sender = new JavaMailSenderImpl();
      applyProperties(sender);
      return sender;
  }

4:有些时候我们需要监听配置刷新事件去做一些额外的事情

EventListener

@EventListener(RefreshScopeRefreshedEvent.class)
public void onApplicationEvent(RefreshScopeRefreshedEvent event) {
       //do something
}

ApplicationListener

  class implements  ApplicationListener<ContextRefreshedEvent>
  public void onApplicationEvent(ContextRefreshedEvent event) {
     //so something
  }

相关文章

网友评论

      本文标题:spring cloud @RefreshScope

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