gpt4 book ai didi

java - Spring Boot 和 Togglz : Catching feature activation time and do some action when feature became active

转载 作者:行者123 更新时间:2023-12-01 21:16:24 25 4
gpt4 key购买 nike

我的 Spring Boot 应用程序中有 togglz 功能。有一些功能目前可以成功运行。所以现在我需要在我的一项功能被激活时立即执行一些操作。有什么办法可以做到这一点吗?

最佳答案

通过使用 Spring Scheduling,您可以解决您的问题。

第 1 步:在类级别为此注解 @EnableScheduling 启用调度

第 2 步:您可以使用任何模式,例如每小时、每分钟、固定延迟等。

@Scheduled(fixedRate = 10000)
@Scheduled(cron = "0 * * * * MON-FRI")`enter code here`
void checTogglzk() {
// ...
}

关于java - Spring Boot 和 Togglz : Catching feature activation time and do some action when feature became active,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58871133/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com