码迷,mamicode.com
首页 > 编程语言 > 详细

springMVC 定时器配置

时间:2018-04-09 11:44:47      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:system   springmvc   bsp   package   多个   nbsp   配置   span   drive   

1、在springMVC中加入

 xmlns:task="http://www.springframework.org/schema/task" 
 http://www.springframework.org/schema/task 
 http://www.springframework.org/schema/task/spring-task-3.2.xsd

2、添加定时器开关

<task:annotation-driven />

3、项目启动扫描包(我下面是多个包)

<context:component-scan base-package="com.xxx.controller,com.xxx.task"/>

4、

@Component
public class CreatTablesTask {
    
    @Autowired
    private CdrService cdrService;
    
    // 每月一号凌晨两点执行任务
   // @Scheduled(cron = "0 0  2  1 *  ? *")

  //没分钟执行一次 @Scheduled(cron = "0 0/1 * * * ?") public void TaskJob() { System.out.println("xxx");
} }

 

springMVC 定时器配置

标签:system   springmvc   bsp   package   多个   nbsp   配置   span   drive   

原文地址:https://www.cnblogs.com/xdcr/p/8758636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!