最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - @Scheduled to skip if fixedRateString is not present - Stack Overflow

programmeradmin3浏览0评论

Team, I am working on a project which refreshes the cache data on a timely manner. This piece of code sits on a java library and this java library is consumed by a Spring boot application. Now, as per the design, the refresh.interval should be set by the client(spring boot app). I want to design this in such a way that if client do not set this key refresh.interval, the scheduler should not even kick in. Currently the application is failing with an error message if key is not provided,

Encountered invalid @Scheduled method 'refresh': Could not resolve placeholder 'refresh.interval' in value "${refresh.interval}"

Library code:

@Component
public class Scheduler {

    @Value("${refresh.interval:#{null}}")
    private String refreshInterval;

    @Scheduled(fixedRateString = "${refresh.interval}")
    public void refresh() {
        if (StringUtils.isNotBlank(refreshInterval)) {
           Cache.refresh();
        }
    }
}

Team, I am working on a project which refreshes the cache data on a timely manner. This piece of code sits on a java library and this java library is consumed by a Spring boot application. Now, as per the design, the refresh.interval should be set by the client(spring boot app). I want to design this in such a way that if client do not set this key refresh.interval, the scheduler should not even kick in. Currently the application is failing with an error message if key is not provided,

Encountered invalid @Scheduled method 'refresh': Could not resolve placeholder 'refresh.interval' in value "${refresh.interval}"

Library code:

@Component
public class Scheduler {

    @Value("${refresh.interval:#{null}}")
    private String refreshInterval;

    @Scheduled(fixedRateString = "${refresh.interval}")
    public void refresh() {
        if (StringUtils.isNotBlank(refreshInterval)) {
           Cache.refresh();
        }
    }
}
Share Improve this question asked Apr 2 at 2:44 user3336194user3336194 891 gold badge1 silver badge12 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can use @ConditionalOnProperty to restrict startup conditions

@Component
@ConditionalOnProperty(name = "refresh.interval")
public class TestConfig {
    
    @Scheduled(fixedRateString = "${refresh.interval}")
    public void refresh() {
        System.out.println("refresh");
    }
}
发布评论

评论列表(0)

  1. 暂无评论