欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring定时器

程序员文章站 2022-06-09 10:48:23
...

在普通的springmvc的情况下加入下面配置即可达到定时器

1.spring的xml文件

xmlns:task="http://www.springframework.org/schema/task"
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.1.xsd 
<task:annotation-driven/>
<context:annotation-config/>  
    <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>  
<context:component-scan base-package="定时器扫描包名"/>
<!-- 哪里要定时器就哪个包 --> 

2.定时器demo

@Controller
public class TestDemo {
    //每五秒执行一次,想设置时间自行百度
    @Scheduled(cron="0/5 * *  * * ? ")
    @RequestMapping("/aaa")
    public void demo1(){
        System.out.println("*********************正在测试定时器1*****************************");
    }
}

3.测试

Spring定时器