如何使用Spring Boot在后台运行某些进程?这是我需要的一个例子:
@SpringBootApplication
public class SpringMySqlApplication {
@Autowired
AppUsersRepo appRepo;
public static void main(String[] args) {
SpringApplication.run(SpringMySqlApplication.class, args);
while (true) {
Date date = new Date();
System.out.println(date.toString());
try {
TimeUnit.SECONDS.sleep(3);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
答案 0 :(得分:3)
您可以使用@ Scheduled-Annotation。
@Scheduled(fixedRate = 5000)
public void reportCurrentTime() {
log.info("The time is now " + System.currentTimeMillis()));
}
https://spring.io/guides/gs/scheduling-tasks/:
计划注释定义特定方法何时运行。注意:此示例使用fixedRate,它指定从每次调用的开始时间开始测量的方法调用之间的间隔。
答案 1 :(得分:2)
您可以使用异步行为。当你调用方法并且当前线程确实等待它完成时。
像这样创建一个可配置的类。
@Configuration
@EnableAsync
public class AsyncConfiguration {
@Bean(name = "threadPoolTaskExecutor")
public Executor threadPoolTaskExecutor() {
return new ThreadPoolTaskExecutor();
}
}
然后在方法中使用:
@Async("threadPoolTaskExecutor")
public void someAsyncMethod(...) {}
查看spring documentation了解更多信息