Jeesite cron定时
spring-context.xml配置
<!-- 计划任务配置,用 @Service @Lazy(false)标注类,用@Scheduled(cron = "0 0 2 * * ?")标注方法 -->
<task:executor id="executor" pool-size="10" />
<task:scheduler id="scheduler" pool-size="10" />
<task:annotation-driven scheduler="scheduler"
executor="executor" proxy-target-class="true" />
<!--
<context:component-scan base-package="com.qa.modules.test.cron"/>-->
类
@Component
@EnableScheduling
@Lazy(false)
public class test{
/*quartz支持年份,而Spring Task不支持,所以cron只支持6位
定时任务方法不能带参数,不能有返回值*/
@scheduled(cron="0 0 2 * * ?")
public void scyn(){}
}