<!-- 任务从此处开始加载 -->
<bean id="notifySpringScheduledExecutorFactoryBean" class="org.springframework.scheduling.concurrent.ScheduledExecutorFactoryBean"> <property name="scheduledExecutorTasks">
1. <list>
2. <ref bean="notifySpringScheduledExecutorTask" />
3. </list>
4. </property>
5.</bean>
6.<!-- 待加入Spring Schedual进行调度的task列表 -->
7.<bean id="notifySpringScheduledExecutorTask" class="org.springframework.scheduling.concurrent.ScheduledExecutorTask">
8. <property name="runnable" ref="notifyScheduledMainExecutor" />
9. <!-- 初次执行任务delay时间,单位为ms,默认值为0,代表首次加载任务时立即执行;比如1min -->
10. <property name="delay" value="60000" />
11. <!-- 间隔时间,单位为ms,默认值为0,代表任务只执行一次;比如2min -->
12. <property name="period" value="120000" />
13. <!-- 是否采用fixedRate方式进行任务调度,默认为false,即采用fixedDelay方式 -->
14. <!-- fixedRate:定时间隔执行,不管上次任务是否已执行完毕;fixedDelay:每次任务执行完毕之后delay固定的时间 -->
15. <property name="fixedRate" value="true" />
16.</bean>
17.<!-- 任务调度主线程 -->
18.<bean id="notifyScheduledMainExecutor" class="com.alisoft.aep.notify.schedual.NotifyScheduledMainExecutor">
19. <!-- 针对Notify服务端的Service,用于更新Notify重试信息等 -->
20. <property name="notifyServerService" ref="notifyServerService" />
21. <!-- notify.notifyId缓存策略实现类,可自行扩展 -->
22. <property name="notifyIdCacheStrategy" ref="defaultNotifyIdCacheStrategy" />
23. <!-- notify.load_balance_num字段值生成、以及调度时where条件中取值的策略实现类,可自行扩展 -->
24. <!-- 当有多台notify服务器时才有用,用于平衡各台server间的压力;一般不用配置 -->
25. <!-- <property name="loadBalanceNumStrategy" ref="alternateLoadBalanceNumStrategy" /> -->
26. <!-- notify.handler字段值在调度时where条件中取值的策略实现类,可自行扩展 -->
27. <!-- 当有多台notify服务器时才有用,用于表明某台server可执行哪些handler;一般不用配置 -->
28. <!-- <property name="notifyHandlerStrategy" ref="defaultNotifyHandlerStrategy" /> -->
29. <!-- 当有多台notify服务器时才有用,用于设置某台server调度时每次读取的Notify最大数,用于覆盖maxNum;一般不用配置 -->
30. <!-- <property name="notifyMaxNumPerJobStrategy" ref="defaultNotifyMaxNumPerJobStrategy" /> -->
31. <!-- 用于并发的线程池 -->
32. <property name="notifyTaskExecutor" ref="notifyTaskExecutor" />
33. <!-- 每次调度读取的Notify最大记录数,默认为1000 -->
34. <property name="maxNum" value="1000" />
35. <property name="notifyDao" ref="notifyDao" />
36.</bean>
37.
38.<!-- 异步线程池 -->
39.<bean id="notifyTaskExecutor" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
40. <!-- 核心线程数,默认为1 -->
41. <property name="corePoolSize" value="10" />
42. <!-- 最大线程数,默认为Integer.MAX_VALUE -->
43. <property name="maxPoolSize" value="50" />
44. <!-- 队列最大长度,一般需要设置值>=notifyScheduledMainExecutor.maxNum;默认为Integer.MAX_VALUE -->
45. <property name="queueCapacity" value="1000" />
46. <!-- 线程池维护线程所允许的空闲时间,默认为60s -->
47. <property name="keepAliveSeconds" value="300" />
48. <!-- 线程池对拒绝任务(无线程可用)的处理策略,目前只支持AbortPolicy、CallerRunsPolicy;默认为后者 -->
49. <property name="rejectedExecutionHandler">
50. <!-- AbortPolicy:直接抛出java.util.concurrent.RejectedExecutionException异常 -->
51. <!-- CallerRunsPolicy:主线程直接执行该任务,执行完之后尝试添加下一个任务到线程池中,可以有效降低向线程池内添加任务的速度 -->
52. <!-- DiscardOldestPolicy:抛弃旧的任务、暂不支持;会导致被丢弃的任务无法再次被执行 -->
53. <!-- DiscardPolicy:抛弃当前任务、暂不支持;会导致被丢弃的任务无法再次被执行 -->
54. <bean class="java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy" />
55. </property>
56.</bean>
57.<bean id="notifyServerService" class="com.alisoft.aep.notify.service.impl.NotifyServerServiceImpl">
58. <!-- 针对任务执行失败后Notify如何重试的策略实现类,可自行扩展 -->
59. <property name="notifyRetryStrategy" ref="defaultNotifyRetryStrategy" />
60. <!-- 针对任务执行失败后异常处理策略实现类,可自行扩展 -->
61. <!-- 默认不对异常进行补救,具体handler实现类中若返回NULL或抛出异常,则均按异常处理,直接将Notify记录迁移到历史表中,不进行重试; -->
62. <!-- <property name="notifyHandlerExceptionStrategy" ref="defaultNotifyHandlerExceptionStrategy" /> -->
63. <!-- 描述见notifyScheduledMainExecutor -->
64. <property name="notifyIdCacheStrategy" ref="defaultNotifyIdCacheStrategy" />
65. <!-- 事务模板,需保证能够找到对应的bean -->
66. <property name="transactionTemplate" ref="transactionTemplate" />
67. <property name="notifyDao" ref="notifyDao" />
68.</bean>
分享到:
相关推荐
在非Web项目中实现Spring定时任务,主要步骤如下: 1. **配置Spring Task**:在Spring的配置文件(如`applicationContext.xml`或使用Java配置类)中,我们需要启用任务调度功能并配置相应的执行器或调度器。例如,...
本文将详细探讨Spring定时任务的关键知识点,并与提供的jar包列表关联。 首先,Spring定时任务主要依赖于`spring-context-support`模块,这个模块包含了处理定时任务所需的类和接口。在压缩包`lib`中,应该包含了这...
Spring定时任务的几种实现,欢迎交流!
Spring定时任务是Spring框架中的一个强大特性,它允许开发者在应用程序中设置定时任务,以便在预定义的时间间隔执行特定的任务。这个功能对于实现自动化、批处理、数据同步、监控等多种业务场景非常有用。在本篇中,...
2. **依赖的jar包**:实现Spring定时任务,通常需要以下10个关键的jar包: - `spring-context`: 包含了Spring的核心功能,如依赖注入(DI),AOP,事件处理等,是实现定时任务的基础。 - `spring-context-support`: ...
一个tomcat下部署了两个应用,一个是普通web应用syncc,另一个应用syncc_wx属于微信公众号后台程序涉及消息定时推送,tomcat未分离...”spring定时任务执行两次的异常排查处理.docx"针对上述描述问题进行分析和解决。
spring定时任务 xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation=...
### Spring 定时任务 在Spring框架中,定时任务是一个非常重要的特性,它允许开发者以简单的方式实现周期性任务的调度。Spring通过`@Scheduled`注解提供了对定时任务的支持,该注解可以轻松地应用于任何Java方法上...
spring定时任务SimpleTrigger 和CronTrigger 配置
Spring框架提供了多种方式来实现定时任务,这使得开发者可以在不同场景下选择最适合的方案。本文主要探讨了Spring中实现定时任务的三种主要方法:Java的`java.util.Timer`、Quartz库以及Spring自身的Task调度器。 ...
一、Spring定时任务简介 Spring框架的定时任务功能主要依赖于`Spring Task`模块,也称为Spring的后台任务处理。它提供了基于`@Scheduled`注解和`TaskScheduler`接口的两种定时任务实现方式。`@Scheduled`适用于简单...
在Spring框架中,定时任务是实现系统自动化运行关键任务的重要工具。Spring提供了多种方式来创建和管理定时任务,...在chapter13目录下的文件可能包含了这些源码示例,你可以逐一研究,加深对Spring定时任务的理解。
下面我们将深入探讨Spring定时任务所需的相关jar包以及它们的功能。 首先,Spring框架的核心jar包`spring-context.jar`是必不可少的。这个jar包包含了Spring的核心功能,如依赖注入(Dependency Injection,DI)、...
Spring定时任务是Spring框架中的一个强大特性,它允许开发者在应用程序中设置定时任务,以便在特定的时间点或按照预设的周期执行特定的业务逻辑。这个"spring定时任务demo包含jar包"提供了一个完整的示例,帮助我们...
Spring定时任务支持更多的功能,比如任务执行的并发控制、任务执行的监听器、以及使用Quartz等第三方调度库进行更复杂的任务调度。 总结,Spring定时任务为开发者提供了方便的API和注解,使我们可以轻松地在Java...
在Spring框架中,定时任务是实现自动化...以上就是关于Spring定时任务`@Scheduled`的例子,包括其工作原理、配置以及在实际项目中的应用。理解并熟练运用这些知识,能够帮助我们构建更加高效、自动化的Spring应用程序。
标题 "spring2.0学习笔记+spring定时任务" 暗示了我们即将探讨的是关于Spring框架2.0版本的学习心得以及如何在Spring中配置和使用定时任务。在这个主题下,我们将深入理解Spring的核心概念,特别是它在企业级Java...
在Spring框架中,定时任务是一项重要的功能,它允许开发者在特定的时间间隔内执行特定的任务,无需手动触发。这个实例是关于如何在Spring中配置和使用定时任务,同时结合MyBatis来向数据库插入数据。接下来,我们将...