Java Web项目中编写定时任务的实现

网友投稿 178 2023-06-16


Java Web项目中编写定时任务的实现

之前在的公司有专门的任务调度框架,需要使用的时候引个jar包加个配置和注解就可以使用了,还有专门的平台来维护运行的机器及监控执行状态等等。

现在突然没了这个工具,而又要写定时任务,该怎么办呢?

对于非Web应用来说,我们可以使用Quartz,使用简单,功能强大。

对于java Web应用来说,当然也可以使用Quartz(有一篇介绍了方法://jb51.net/article/104105.htm),但是还有更方便的工具,那就是spring自带的支持定时任务功能。

Spring的定时任务在spring-context中,简单配置的模板如下:

xmlns:task="http://springframework.org/schema/task"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans-3.2.xsd

http://springframework.org/schema/task http://springframework.org/schema/task/spring-task.xsd">

xmlns:task="http://springframework.org/schema/task"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans-3.2.xsd

http://springframework.org/schema/task http://springframework.org/schema/task/spring-task.xsd">

其中task:scheduler指定了执行定时任务使用的scheduler,默认使用的是

org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;

task:annotation-driven允许使用@Async和@Scheduled注解;

task:scheduler-tasks中定义了一个个task,其中执行周期可以使用cron表达式,还可指定延时或频率等方式。

有一个转换cron的在线工具挺好用,推荐给大家(注意这里可能会显示7个字符,去掉最后一个*即可):http://tools.jb51.net/code/Quartz_Cron_create

接下来还有一个问题,通常我们的线上环境是集群环境,有多台机器,而这些定时任务通常只需要在一台上执行,如何来进行控制呢?

目前想到两种办法,分享给大家:

1. 使用Redis全局缓存

//jb51.net/article/104111.htm

2. 通过判断文件的方式

通过判断某文件是否存在,来决定是否执行任务(是否加载任务对应的spring配置文件),参考代码:

@Component

public class XxxListener implements ApplicationContextAware {

// 防止加载多次

private static final AtomicInteger INIT_LOCK = new AtomicInteger(0);

@Override

public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {

if (INIT_LOCK.incrementAndGet() > 1) {

// 类已加载过

return;

}

Resource resource = applicationContext.getResource("classpath:<标识文件>");

if (!resource.exists()) {

// 文件不存在,不启动

return;

}

ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(applicationContext);

context.setConfigLocations("classpath:spring/job.xml");

context.refresh();

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java 替换空格
下一篇:angular和BootStrap3实现购物车功能
相关文章

 发表评论

暂时没有评论,来抢沙发吧~