spring定时任务配置与任务类详解

    要配置spring定时任务,那你要能搭建spring框架,否则该文章可能有看不懂的概率。

  spring的配置文件

            





 
    	
    		
    			
    		
    	
    

    
    	
    
    
    	
    		
    	
    	
    	
    		downLoadJob
    	
    
    
    
    	
    		
    	
    	
    	
    		0/10 * * * * ?
    	
    


如上配置,这个任务的入口就是第二个bean的地方 在com.gouge.job.DownLoadImageJob类中的downLoadJob方法,如上配置该方法会每10秒会调用一次。

com.gouge.job.DownLoadImageJob类如下:

public class DownLoadImageJob {
	
	public void downLoadJob() {
			//方法执行的内容
	}
		
}

 

你可能感兴趣的:(代码)