`
beisicao
  • 浏览: 66588 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

spring定时器的动态设置

阅读更多
spring还是以整合已有的框架为主,它对时间的设置比较灵活。
在spring中,可以继承QuartzJobBean,也可以不做任何继承,当然写法也不一样,这里用的非继承的写法。
定时器的注册过程:1.创建bean,2.声明bean为一个定时器,3.设置任务时间,4.在调度中注册定时器

===================================================================
<?xml version="1.0" encoding="utf-8"?>  
 
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd        http://www.springframework.org/schema/tx http://www.springframework.org/schema/aop        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">    
  <bean id="mySessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">   
    <property name="configLocation" value="classpath:hibernate.cfg.xml"/>    
  </bean>    
  <bean id="myTxManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">   
    <property name="sessionFactory" ref="mySessionFactory"/>   
  </bean>    
    
    <tx:advice id="txAdvice" transaction-manager="myTxManager">   
    <tx:attributes>   
      <tx:method name="find*" propagation="REQUIRED" read-only="true"/>    
      <tx:method name="get*" propagation="REQUIRED" read-only="true"/>    
      <tx:method name="save*" propagation="REQUIRED" read-only="false" rollback-for="com.HXException"/>  
      <tx:method name="audit*" propagation="REQUIRED" read-only="false" rollback-for="com.HXException"/>    
      <tx:method name="do*" propagation="REQUIRED" read-only="false" rollback-for="com.HXException"/>    
      <tx:method name="add*" propagation="REQUIRED" read-only="false" rollback-for="com.HXException"/>    
      <tx:method name="modify*" propagation="REQUIRED" read-only="false" rollback-for="com.HXSException"/>    
      <tx:method name="delete*" propagation="REQUIRED" read-only="false" rollback-for="com.HXException"/>    
      <tx:method name="create*" propagation="REQUIRED" read-only="false" rollback-for="com.HXException"/>    
      <tx:method name="update*" propagation="REQUIRED" read-only="false" rollback-for="com.HXException"/>    
      <tx:method name="*" propagation="SUPPORTS" read-only="true"/>   
    </tx:attributes>   
  </tx:advice>  
    
  <aop:config>   
    <aop:pointcut id="systemServiceMethods" expression="execution(* com.*.*(..))"/>    
    <aop:advisor advice-ref="txAdvice" pointcut-ref="systemServiceMethods"/>   
  </aop:config>     
 
   <bean id="testJob" class="org.springframework.scheduling.quartz.JobDetailBean">   
    <property name="jobClass" value="web.testJob"/>    
    <property name="jobDataAsMap">   
      <map>   
        <entry key="ftpConfigService">  
            <ref bean="ftpConfigService"/>  
        </entry>  
      </map>   
    </property>   
  </bean>  
    
  <bean id="testJob1" class="org.springframework.scheduling.quartz.JobDetailBean">   
    <property name="jobClass" value="web.test1Job"/>    
    <property name="jobDataAsMap">   
      <map>   
        <entry key="ftpConfigService">  
            <ref bean="ftpConfigService"/>  
        </entry>  
      </map>   
    </property>  

</bean>  
 
<bean id="testTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean">   
    <property name="jobDetail" ref="testJob"/>    
    <property name="cronExpression" value="0 19 8,9,19,20 * * ?"/>   
</bean>  
<bean id="testTrigger1" class="org.springframework.scheduling.quartz.CronTriggerBean">   
    <property name="jobDetail" ref="testJob"/>    
    <property name="cronExpression" value="0 18 8,9,19,20 * * ?"/>   
</bean>  
<bean id="testTrigger2" class="org.springframework.scheduling.quartz.CronTriggerBean">   
    <property name="jobDetail" ref="testJob1"/>    
    <property name="cronExpression" value="0 17 8,9,19,20 * * ?"/>   
</bean>    
 
  <!--   
<bean id="testTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerBean">   
   <property name="jobDetail" ref="testJob"/>     
   <property name="startDelay" value="6000"/>    
   <property name="repeatInterval" value="3000"/>   
</bean>   
-->  
   <bean id="facbean" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">   
    <property name="triggers">   
            <list>  
                <ref bean="testTrigger"/>  
                <ref bean="testTrigger1"/>  
                <ref bean="testTrigger2"/>  
            </list>  
        </property>  
  </bean>  
   
<bean id="ftpConfigDAO" scope="prototype" class="com.FtpConfigHibernateDAO">  
<property name="sessionFactory">  
    <ref local="mySessionFactory" />  
</property>  
</bean>  
<bean id="ftpConfigService" scope="prototype" class="com.FtpConfigServiceSpringImp">  
<property name="ftpConfigDAO">  
    <ref local="ftpConfigDAO"/>  
</property>  
</bean>  
<beans> 
================================================================
public class testJob extends QuartzJobBean{  
    private IFtpConfigService ftpConfigService;  
      
 
    public IFtpConfigService getFtpConfigService() {  
        return ftpConfigService;  
    }  
 
 
    public void setFtpConfigService(IFtpConfigService ftpConfigService) {  
        this.ftpConfigService = ftpConfigService;  
    }  
 
 
    @Override  
    protected void executeInternal(JobExecutionContext arg0)  
            throws JobExecutionException {  
        System.out.println("执行================");  
        try{  
            FtpConfig ftp = this.getFtpConfigService().findFtpConfigById("2");  
            System.out.println(ftp.getFtpUrl());  
        }catch(Exception e){}  
          
    }  
===========================================================
public class testservlet extends HttpServlet{  
 
    @Override 
    protected void doGet(HttpServletRequest request, HttpServletResponse response)  
            throws ServletException, IOException {    
        response.setContentType("text/html;charset=utf-8");  
        String time = request.getParameter("time");  
        WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());           
        try{  
              
            SchedulerFactoryBean jobFact = (SchedulerFactoryBean)ctx.getBean("&facbean");  
              
            CronTriggerBean bean = (CronTriggerBean)ctx.getBean("testTrigger");  
            String newVal = "0 16 8,9,19,20 * * ?";  
            bean.setCronExpression(newVal);  
              
            jobFact.destroy();    
            jobFact.afterPropertiesSet();  
              
        }catch(Exception e){  
            e.printStackTrace();  
        }  
          
        response.sendRedirect("succ.jsp");  
    }  
 
    @Override 
    protected void doPost(HttpServletRequest req, HttpServletResponse resp)  
            throws ServletException, IOException {         
        doGet(req,resp);  
    }   
}        
分享到:
评论

相关推荐

    spring定时器 spring定时器

    Spring定时器还支持动态修改任务执行计划,例如通过`ThreadPoolTaskScheduler`或`ConcurrentTaskScheduler`来调整线程池大小,控制并发执行的任务数量。此外,我们还可以通过`@Scheduled`注解的`initialDelay`属性来...

    java 定时器 spring 定时器

    Java定时器和Spring定时器是Java开发中用于执行周期性任务的重要工具,它们在系统维护、数据同步、报告生成等场景中发挥着关键作用。本文将深入探讨这两个概念,以及如何在Spring框架中配置和使用定时器。 首先,...

    spring 定时器的两种实现

    通过`CronScheduleBuilder`,我们可以使用cron表达式设置更灵活的执行时间。 总的来说,Spring自带的定时任务简单易用,适合简单的定时需求。而Quartz功能强大,适合处理复杂的调度场景。在选择使用哪种方式时,...

    spring定时器简单的demo

    Spring提供了Spring Task模块来实现定时任务,也就是我们常说的Spring定时器。这个"spring定时器简单的demo"应该包含了一个使用Spring Task实现简单定时任务的例子。 首先,Spring Task的配置通常在`...

    spring定时器简单实例

    Spring定时器,也被称为Spring Boot的定时任务,是Spring框架中的一个强大功能,它允许开发者在特定的时间间隔执行任务,而无需手动管理线程。在实际的开发中,这一特性常用于实现数据清理、统计计算、发送邮件等...

    Spring定时器与动态代理实例

    总结,本实例通过Spring定时器展示了如何在Spring环境中实现定时任务,同时结合动态代理技术,增强了任务的灵活性和可扩展性。对于日常开发来说,掌握这些技术可以帮助我们更高效地管理后台服务,提升系统的自动化...

    springAop与spring定时器

    Spring AOP(面向切面编程)是Spring框架中的一个重要组件,它允许我们在不修改源代码的情况下,通过在程序运行时动态地将代码插入到方法调用中,来实现跨切面的关注点,如日志记录、性能监控、事务管理等。而Spring...

    spring 定时器完整实例 demo

    下面是一个完整的Spring定时器示例: 1. **配置Spring配置类** 首先,我们需要创建一个配置类,启用定时任务支持,并提供一个`ThreadPoolTaskScheduler`实例,用于调度任务。 ```java @Configuration @...

    SPRING 定时器的使用

    ### Spring 定时器的使用 #### 背景与需求 在开发应用程序时,并非所有操作都需要用户主动触发。有些任务需要系统自动执行,比如数据同步、定期备份等。例如,电力行业的集抄系统(一种自动收集电表读数的系统)...

    spring定时器

    以上内容详细介绍了Spring定时器的相关知识点,包括其基本概念、不同类型的定时器以及实际应用中的配置和实现方法。通过理解和掌握这些知识,开发者可以更高效地利用Spring框架来实现复杂的定时任务功能。

    spring定时器的包和配置文件

    在标题"spring定时器的包和配置文件"中,我们讨论的核心是Spring如何配置和使用定时器来自动化执行特定的任务。 首先,让我们了解Spring定时任务的基本概念。Spring定时器基于Java的`java.util.Timer`和`java.util....

    spring 定时器

    Spring定时器,全称为Spring Framework中的Task Execution and Scheduling模块,是Spring提供的一种用于执行计划任务的工具。这个模块使得开发者能够方便地在应用程序中安排周期性任务,而无需依赖像Quartz或Cron...

    Spring中的Quartz配置-Spring-定时器-java定时器.doc

    Spring 中的 Quartz 配置-Spring 定时器-java 定时器 在 Spring 框架中,Quartz 是一个非常流行的开源作业调度器,可以实现任务的定时执行。在本篇文章中,我们将讨论如何在 Spring 中配置 Quartz,以实现 Java ...

    spring定时器时间配置

    本文旨在深入解析Spring定时器的时间配置规则,并通过具体的代码示例进行演示。 #### Cron表达式的构成 Cron表达式由六个或七个空格分隔的时间元素组成,这些元素分别代表: 1. **秒** (0–59) 2. **分钟** (0–59...

    spring的定时器设置

    在本主题"spring的定时器设置"中,我们将深入探讨Spring如何配置定时任务,主要关注2.x和3.x版本的区别。 一、Spring 2.x 定时任务 在Spring 2.x中,定时任务主要是通过`org.springframework.scheduling.timer`包...

    Spring的定时器动态修改参数cron的值

    本篇文章将深入探讨如何动态地修改Spring定时器的cron表达式,以便任务能够根据业务需求进行实时调整。 首先,我们需要了解Spring中的定时任务是如何配置的。通常,我们会在Spring的配置文件中使用`@...

    spring定时器实现源码

    Spring 框架是 Java 开发中的核心组件之一,它提供了丰富的功能,包括但不限于依赖注入、面向切面编程以及各种企业级服务。在本篇中,我们将深入探讨如何在 Spring 框架中实现定时任务功能,特别是使用 Spring MVC ...

Global site tag (gtag.js) - Google Analytics