- 浏览: 76164 次
文章分类
最新评论
加入quartz-1.6.1.jar
1.配置文件
Scheduler类有很多功能函数,你使用自动提示看看就知道了
1.如果开发的是web应用,那么在web.xml里面加入
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
2.加载xml
ApplicationContext context = new ClassPathXmlApplicationContext("quartz-config.xml");
1.配置文件
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" default-lazy-init="true"> <bean id="springContextUtil" class="com.alensic.nursing.common.SpringContextUtil" /> <bean id="messageSchedule" class="org.springframework.scheduling.quartz.JobDetailBean"> <property name="jobClass"> <value>com.alensic.nursing.sysmgr.ScheduleInfoService</value> </property> <property name="jobDataAsMap"> <map> <entry key="cronTriggerDAO"> <ref bean="commonQueryDAO"/> </entry> <entry key="springContextUtil"> <ref bean="springContextUtil"/> </entry> </map> </property> </bean> <!-- 配置定时器 --> <bean id="cronTrigger" class="com.alensic.nursing.sysmgr.InitCronTrigger"> <property name="jobDetail"> <ref bean="messageSchedule" /> </property> <!-- <property name="cronExpression"> <value>0 * 08-21 * * ?</value> </property> --> <property name="cronTriggerDAO" ref="commonQueryDAO"/> </bean> <!--添加触发器--> <bean id="schedulerFactory" class="org.springframework.scheduling.quartz.SchedulerFactoryBean" lazy-init="false"> <property name="triggers"> <list> <ref bean="cronTrigger" /> </list> </property> </bean> </beans>
package com.alensic.nursing.sysmgr; import java.io.Serializable; import java.text.ParseException; import java.util.List; import java.util.Map; import org.helix.core.secure.acegi.User; import org.springframework.scheduling.quartz.CronTriggerBean; import org.springframework.security.core.context.SecurityContextHolder; import com.alensic.nursing.common.CommonJdbcQuerySupport; /** * 动态的设置时间间隔 * @author zhchen * */ public class InitCronTrigger extends CronTriggerBean implements Serializable { private CommonJdbcQuerySupport cronTriggerDAO; public CommonJdbcQuerySupport getCronTriggerDAO() { return cronTriggerDAO; } public void setCronTriggerDAO(CommonJdbcQuerySupport cronTriggerDAO) throws ParseException{ this.cronTriggerDAO = cronTriggerDAO; String cronException = getCronExceptionDB(); setCronExpression(cronException); } private String getCronExceptionDB(){ if(SecurityContextHolder.getContext().getAuthentication() == null) return "2/3 * * * * ?"; User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); String sql = "SELECT setting_value FROM t_sys_setting WHERE group_no = ? AND setting_key = ?"; Object hosPital = user.getAttribute("sessionHospitalId"); if(hosPital == null) return "0 10 * * * ?"; List<Map<String, Object>> list = cronTriggerDAO.getJdbcTemplate().queryForList(sql,new Object[]{hosPital,"period"}); if(list.size() == 0) return "0 10 * * * ?"; return "0 "+list.get(0).get("setting_value").toString()+" * * * ?"; } }
package com.alensic.nursing.sysmgr; import java.text.ParseException; import java.util.Date; import java.util.List; import java.util.Map; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; import org.quartz.Scheduler; import org.quartz.SchedulerException; import org.springframework.scheduling.quartz.CronTriggerBean; import org.springframework.scheduling.quartz.QuartzJobBean; import com.alensic.nursing.common.CommonJdbcQuerySupport; import com.alensic.nursing.common.SpringContextUtil; /** * 消息定时器 * @author zhchen * */ public class ScheduleInfoService extends QuartzJobBean{ protected final Log logger = LogFactory.getLog(getClass()); private CommonJdbcQuerySupport cronTriggerDAO; private SpringContextUtil springContextUtil; @Override protected void executeInternal(JobExecutionContext arg0) throws JobExecutionException { System.out.println("spring定时器"); try { updateNotificationInterval(); } catch (ParseException e) { e.printStackTrace(); } catch (SchedulerException e) { e.printStackTrace(); } } /** * 动态的设置时间间隔 * * @author zhchen * @throws SchedulerException * @throws ParseException */ public void updateNotificationInterval() throws SchedulerException,ParseException { Scheduler scheduler = (Scheduler) springContextUtil.getBean("schedulerFactory"); String dbCronExpression = getCronExceptionDB(); String cronExpressionTime = dbCronExpression.split(",")[0]; String isClosed = dbCronExpression.split(",")[1]; if("true".equals(isClosed)){ scheduler.pause();//关闭 return; }else{ scheduler.start();//开始 } // 运行时可通过动态注入的scheduler得到trigger CronTriggerBean trigger = (CronTriggerBean) scheduler.getTrigger( "cronTrigger", Scheduler.DEFAULT_GROUP); String originConExpression = trigger.getCronExpression(); if(!originConExpression.equalsIgnoreCase(cronExpressionTime)){ // 把定时器的执行时间间隔改为每5秒钟执行一次 trigger.setCronExpression(cronExpressionTime); scheduler.rescheduleJob("cronTrigger", Scheduler.DEFAULT_GROUP, trigger); System.out.println("task start time: " + new Date()); System.out.println("Task test success!"); System.out.println("task end time: " + new Date()); } } /** * 查询系统设置消息提示的信息 * @return */ private String getCronExceptionDB(){ String cronException = "0 10 * * * ?,false"; String sql = "SELECT setting_value,setting_key FROM t_sys_setting WHERE group_no = ?"; /*if(SecurityContextHolder.getContext().getAuthentication() == null) return cronExceptionTime; User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); Object hosPital = user.getAttribute("sessionHospitalId"); System.out.println("*****" + sql); if(hosPital == null) return cronExceptionTime;*/ List<Map<String, Object>> list = cronTriggerDAO.getJdbcTemplate().queryForList(sql,new Object[]{"0100001"}); if(list.size() == 0) return cronException; for(Map<String, Object> map:list){ if("period".equals(map.get("setting_key"))){ cronException = cronException.replace("0 10 * * * ?", "0/"+map.get("setting_value").toString()+" * * * * ?"); continue; }else if("is_close".equals(map.get("setting_key"))){ cronException = cronException.replace("false", map.get("setting_value").toString()); } } System.out.println("time: " + new Date()); return cronException; } public CommonJdbcQuerySupport getCronTriggerDAO() { return cronTriggerDAO; } public void setCronTriggerDAO(CommonJdbcQuerySupport cronTriggerDAO) { this.cronTriggerDAO = cronTriggerDAO; } public SpringContextUtil getSpringContextUtil() { return springContextUtil; } public void setSpringContextUtil(SpringContextUtil springContextUtil) { this.springContextUtil = springContextUtil; } }
package com.alensic.nursing.common; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; /** * 获取spring容器,以访问容器中定义的其他bean */ public class SpringContextUtil implements ApplicationContextAware { // Spring应用上下文环境 private static ApplicationContext applicationContext; /** * 实现ApplicationContextAware接口的回调方法,设置上下文环境 */ public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { SpringContextUtil.applicationContext = applicationContext; } public static ApplicationContext getApplicationContext() { return applicationContext; } /** * 获取对象 这里重写了bean方法,起主要作用 * * @param name * @throws BeansException */ public static Object getBean(String beanId) throws BeansException { return applicationContext.getBean(beanId); } }
Scheduler类有很多功能函数,你使用自动提示看看就知道了
1.如果开发的是web应用,那么在web.xml里面加入
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
2.加载xml
ApplicationContext context = new ClassPathXmlApplicationContext("quartz-config.xml");
相关推荐
Spring定时器,也被称为Spring Boot的定时任务,是Spring框架中的一个强大功能,它允许开发者在应用程序中安排周期性任务的执行。这个功能基于Java的`java.util.concurrent.ScheduledExecutorService`,并通过Spring...
Java定时器和Spring定时器是Java开发中用于执行周期性任务的重要工具,它们在系统维护、数据同步、报告生成等场景中发挥着关键作用。本文将深入探讨这两个概念,以及如何在Spring框架中配置和使用定时器。 首先,...
Spring提供了Spring Task模块来实现定时任务,也就是我们常说的Spring定时器。这个"spring定时器简单的demo"应该包含了一个使用Spring Task实现简单定时任务的例子。 首先,Spring Task的配置通常在`...
Spring定时器,也被称为Spring Boot的定时任务,是Spring框架中的一个强大功能,它允许开发者在特定的时间间隔执行任务,而无需手动管理线程。在实际的开发中,这一特性常用于实现数据清理、统计计算、发送邮件等...
### Spring 定时器的使用 #### 背景与需求 在开发应用程序时,并非所有操作都需要用户主动触发。有些任务需要系统自动执行,比如数据同步、定期备份等。例如,电力行业的集抄系统(一种自动收集电表读数的系统)...
Spring定时器,全称为Spring Framework中的Task Execution and Scheduling模块,是Spring提供的一种用于执行计划任务的工具。这个模块使得开发者能够方便地在应用程序中安排周期性任务,而无需依赖像Quartz或Cron...
下面是一个完整的Spring定时器示例: 1. **配置Spring配置类** 首先,我们需要创建一个配置类,启用定时任务支持,并提供一个`ThreadPoolTaskScheduler`实例,用于调度任务。 ```java @Configuration @...
本文旨在深入解析Spring定时器的时间配置规则,并通过具体的代码示例进行演示。 #### Cron表达式的构成 Cron表达式由六个或七个空格分隔的时间元素组成,这些元素分别代表: 1. **秒** (0–59) 2. **分钟** (0–59...
在标题"spring定时器的包和配置文件"中,我们讨论的核心是Spring如何配置和使用定时器来自动化执行特定的任务。 首先,让我们了解Spring定时任务的基本概念。Spring定时器基于Java的`java.util.Timer`和`java.util....
在Spring框架中,有两种主要的方法来实现定时任务:Spring自带的`@Scheduled`注解和引入第三方库Quartz。这两种方法都可以帮助开发者在特定的时间点执行任务,为应用程序添加计划任务的能力。 首先,我们来看看使用...
Spring定时器(TaskScheduler或ScheduledTasks): 在Spring框架中,我们可以利用`@Scheduled`注解和`TaskScheduler`接口来实现定时任务。`@Scheduled`注解可以直接在方法上,声明该方法为周期性执行的任务。例如: ...
Spring AOP(面向切面编程)是Spring框架中的一个重要组件,它允许我们在不修改源代码的情况下,通过在程序运行时动态地将代码插入到方法调用中,来实现跨切面的关注点,如日志记录、性能监控、事务管理等。而Spring...
在Spring中,定时任务的实现通常通过Spring Task模块,也就是我们常说的Spring定时器。这个实例将深入探讨如何利用Spring来创建和管理定时任务,并结合动态代理技术来增强功能。我们将从以下几个方面进行讲解: 1. ...
标题“spring定时器的动态设置”涉及到的是Spring框架中的任务调度功能,主要使用的是Spring的`@Scheduled`注解和`TaskScheduler`接口。在Java应用中,有时我们需要执行一些定时任务,例如清理缓存、数据同步等,...
Spring定时器Quartz是Java应用中广泛使用的任务调度框架,它允许开发者定义并执行复杂的定时任务。这篇博客可能探讨了如何在Spring框架中集成Quartz,以实现灵活、可扩展的任务调度。 Quartz是一个开源的作业调度...
本篇将详细介绍如何配置和使用Spring的定时器来定时调用任务。 首先,让我们了解Spring Task的核心组件。`TaskExecutor`接口用于异步执行任务,而`TaskScheduler`接口则用于调度定时任务。在这个场景中,我们将重点...
Spring 定时器配置详解 Spring 定时器是一种基于 Quartz 的任务调度框架,它提供了一个灵活的方式来管理和控制任务的执行。下面是 Spring 定时器配置的详细解释。 配置 CronTriggerBean CronTriggerBean 是 ...
Spring 中的 Quartz 配置-Spring 定时器-java 定时器 在 Spring 框架中,Quartz 是一个非常流行的开源作业调度器,可以实现任务的定时执行。在本篇文章中,我们将讨论如何在 Spring 中配置 Quartz,以实现 Java ...