2020
12-10
12-10
如何在springboot中使用定时任务
在日常的开发过程中经常使用到定时任务,在springMVC的开发中,经常和quartz框架进行集成使用,但在springboot中没有这么做,而是使用了java的线程池来实现定时任务。一、概述 在springboot中使用定时任务非常简单,只需要简单的几步即可完成。二、详述在springboot中要使用定时任务,首先要保证环境是springboot的,这里使用的是springboot-2.1.2.release版本。在启动类上加@EnableScheduling注解,如下,packagecom.exampl...
继续阅读 >