测试代码
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.annotation.PostConstruct;
import java.time.Instant;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
/**
* @Description
* @Author aqin1012 AQin.
* @Date 2022/3/10 3:28 PM
* @Version 1.0
*/
@Service
public class RasService {
@Autowired
private ScheduledExecutorService scheduledExecutorService;
@PostConstruct
public void dbBackupTimer() {
System.out.println("START--->");
scheduledExecutorService.scheduleAtFixedRate(() -> {
System.out.println("哈哈哈哈~我就是个TEST "+Instant.now().toEpochMilli());
}, 1, 20, TimeUnit.SECONDS);
System.out.println("<---END");
}
}
执行结果
总结
由上测试不难发现虽然方法中的定时器执行了多次,但是定时器前后的输出只执行了一次,说明@PostConstruct注解修饰的方法即使在里面存在定时器的情况下也只会在程序启动时执行一次(并开启定时器),定时器则会按照配置不断执行。
@PostConstruct注解
- 可以修饰非静态方法
- 它会在服务器加载Servlet的时候运行,并且只运行一次
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/135448.html