Spring 定时器配置 基于注解 (使用 Spring4)


(1):修改配置 文件 如下:


	
	
	
	 


package com.xx.scheduler;

import java.text.SimpleDateFormat;
import java.util.Date;

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class Job {
    public Job(){  
        System.out.println("MyJob创建成功");  
    } 
	@Scheduled(cron = "0/1 * *  * * ? ")//每隔1秒隔行一次  
    public void run(){  
     System.out.println("Hello MyJob  "+  new SimpleDateFormat("yyyy-MM-dd HH:mm:ss ").format(new Date()));  
    }  

}


你可能感兴趣的:(JAVA)