您的位置:首页 > 编程语言 > Java开发

基于Spring注解方式配置Quartz

2015-05-13 10:30 357 查看
   之前我们都是通过基于XML的方式实现Spring  Quartz 虽然配置起来特别的方便,但是Spring还支持基本注解的方式来配置,这样做不仅更加简单,而且代码量也更加少了很多。

1、配置需要调度的类,并添加注解

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

import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;

@Component
public class HelloJob {

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

2、首先要配置我们的beans.xml,在xmlns 多加下面的内容
xmlns:task="http://www.springframework.org/schema/task"

3、然后xsi:schemaLocation多加下面的内容 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd

4、自动配置扫描spring配置文件里面配置内容
<!--开启这个配置,spring才能识别@Scheduled注解-->
<task:annotation-driven/>
<!-- 自动扫描注解的bean -->
<context:component-scan base-package="com.binnor"/>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java spring quartz