quartz 定时任务,项目启动立即执行

需求:某个定时任务在不需要手动触发,项目启动立即执行。(配置式)

quartz-config.xml


    xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    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
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"
    default-lazy-init="false">

    
 
             class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
        
            
        

        
            AutoPushDownTForNXWX
        

    

    
    
    
        
        
            0 0/1 * * * ? *
            
        

    

     
     
     
 
    
        
            
                
                
            

        

    

 

web.xml


        contextConfigLocation
        classpath:applicationContext.xml,classpath:quartz-config.xml
    

 GolabJob.java

quartz 定时任务,项目启动立即执行_第1张图片

 

 

 

你可能感兴趣的:(quartz 定时任务,项目启动立即执行)