spring配置quartz:定时去执行一个方法

参考文章:http://www.jb51.net/article/107339.htm


1,其中加注释的地方是自己要修改的,其他的代码都不可以不动,当然你也可以把id什么的改成自己想要的。项目启动时你想要的方法就会自动执行了。

2,这中配置对版本有些要求,具体参考上面的文章。


xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    //自己的Dao
    
    
  

     //自己的service
    
    

    
    
                 //引入上面自己的service
    
    
        
    textQuartz              //textQuartz是service中要执行的方法,写自己的方法
    
    

    
    
    
    
    
    
    * 0/5 * * * ?         //cron表达式,设置多长时间执行一次
    
    
    
    
    
    
    
    
    
    
    
beans>

 
  

你可能感兴趣的:(菜鸟问题)