Scheduledアノテーションを使うと、スケジュールされたタイミングでメソッドを実行することができます。 これで周期実行的なものは、簡単に実装できます。 Getting Started · Scheduling Tasks 34. Task Execution and Scheduling 実装方法 実行したいメソッドにScheduledアノテーションを付けます。 @Component public class Scheduler { @Scheduled(fixedRate = 5000) public void doSomething() { // 5秒周期で行いたい処理 } } Scheduledアノテーションによる実行を有効とするためには、EableSchedulingアノテーションを付けます。 @SpringBootApplication @EnableScheduling p