为什么枚举要实现接口?
413
2022-09-06
java中Timer定时器的使用和启动方式
目录Timer定时器的使用和启动1.概述2.应用场景3.使用方法4.启动方法java的几种定时器小结1.@Scheduled注解2.quartz3.使用Timer4.使用线程控制
Timer定时器的使用和启动
1.概述
定时计划任务功能在Java中主要使用的就是Timer对象,它在内部使用多线程的方式进行处理,所以它和多线程技术还是有非常大的关联的。在JDK中Timer类主要负责计划任务的功能,也就是在指定的时间开始执行某一个任务,但封装任务的类却是TimerTask类。
2.应用场景
我们使用timer的时候,一般有4种情况:
指定时间执行
指定时间执行后间隔指定时间重复执行
启动任务之后多久执行
启动任务后多久执行,执行之后指定间隔多久重复执行
3.使用方法
首先要通过继承 TimerTask 类 并实现 run() 方法来自定义要执行的任务(当然也可以写成匿名内部类),
需要创建一个定时器(Timer类对象),并通过Timer.schedule(TimerTask task,Date time) 方法执行时间运行任务
具体代码如下:
package timerdemo;
import java.util.Timer;
import java.util.TimerTask;
public class TimerDemo {
public static void main(String[] args) {
timerTest();
}
public static void timerTest(){
//创建一个定时器
Timer timer = new Timer();
//schedule方法是执行时间定时任务的方法
timer.schedule(new TimerTask() {
//run方法就是具体需要定时执行的任务
@Override
public void run() {
System.out.println("timer测试!!!");
}
}, 1000, 10000);
}
}
这里的 schedule方法有4个,分别对应上面说的四种情况:
4.启动方法
1.在jar工程下启动
把jar工程打成jar包,通过java -jar timer.jar 运行
2.这web工程下启动
spring中我们可以通过实现接口ApplicationListener,并重写public void onApplicationEvent(ApplicationEvent event) {}可以在容器初始话的时候执行这个方法
下面展示下web工程下每天00:00执行任务的代码:
@Component
public class SystemInitListener implements ApplicationListener
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
//创建定时器
Timer timer = new Timer();
Calendar calendar = Calendar.getInstance();
calendar.add(Calendar.DATE,1);
calendar.set(calendar.get(Calendar.YEAR),calendar.get(Calendar.MONTH),calendar.get(Calendar.DATE),0,0,0);
long timeInterval = 24 * 60 * 60 * 1000;
timer.schedule(new TimerTask() {
@Override
public void run() {
// 每天00:00需要做的事情
}
}, calendar.getTime(), timeInterval);
java的几种定时器小结
总结一下我使用过的4种类型的定时器:@Scheduled注解、quartz、new Timer().schedule、使用线程控制。
1.@Scheduled注解
@Scheduled注解是最简单的方式,只需要启用定时器,在方法上添加注解即可。
在spring配置中加入:
在要具体的方法上加入注解@Scheduled
@Scheduled(cron = "0 0 * * * ? ")
public void myTask(){
//定时任务......
}
2.quartz
quartz使用的是可配置的方式,将所有的定时器都配置再一个xml文件里面。
步骤如下:
1.创建一个spring的配置文件:spring-quartz.xml
2.定义工作任务的job
3.定义触发器Trigger并与job绑定
4.定义调度器,并将Trigger注册到scheduler
最后记得将xml写入web.xml里!
classpath:applicationContext.xml,
classpath:log4j.xml,
classpath:spring-quartz.xml
3.使用Timer
使用Timer的schedule,schedule有3个参数:
schedule(TimerTask task, long delay, long period)
第一个为定时任务,根据业务需要重写TimerTask的run方法即可;
第二个为延时启动,单位毫秒;
第三个位多久运行一次,单位毫秒;
new Timer().schedule(new TimerTask() {
@Override
public void run() {
try {
//do Something
} catch (Exception e) {
e.printStackTrace();
}
}
},0,5L * 60 * 1000);
4.使用线程控制
使用线程来控制就更灵活一些,可以根据自己的需要判断什么时候运行,什么时候停止,这需要对java的线程有一定的了解。
public class TaskTest {
private static final ExecutorService pool = Executors.newFixedThreadPool(5);// 线程池
public static final TaskTest me = new TaskTest();
public final int[] arr = new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9};
public static void main(String[] args) {
me.start();
}
private void start() {
pool.execute(new Runnable() {
@Override
public void run() {
while (true) {
try {
for (int i = 0; i < arr.length; i++) {
if (1 == arr[i]) {
System.out.println("start!");
Thread.sleep(1*1000L);
}
if (6 == arr[i]) {
System.out.println("stop!");
Thread.sleep(5*1000L);
}
System.out.println(arr[i]);
if (9 == arr[i]) {
System.out.println("end!");
Thread.sleep(5*1000L);
}
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
});
}
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~