• spring4 quartz2 集群动态任务


    实现定时任务的执行,而且要求定时周期是不固定的。测试地址:http://sms.reyo.cn

    生产环境:nginx+tomcat+quartz2.2.1+spring4.2.1 集群。

    实现功能:可添加新任务,删除任务,更新任务,暂停任务,恢复任务

    任务管理:

    修改任务:

    新增任务:

    静态任务实现每20秒websocket向客户端发送一文字消息和图片信息。

    静态任务测试地址(刷新地址可以看到访问到不同的服务器):http://sms.reyo.cn/socket.html    

    以下是静态任务配置文件:

    <?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:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"
        xsi:schemaLocation="
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
            http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
            http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
    
        <!-- 启动触发器的配置开始 -->
        <bean name="startQuertz" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
            <property name="triggers">
                <list>
                    <ref bean="autoBatchTestTrigger" />
                    <!-- <ref bean="cleanErrorTaskTrigger"/> -->
                </list>
            </property>
            <property name="schedulerName"><value>first</value></property> 
        </bean>
        <!-- 启动触发器的配置结束 -->
    
        <!-- 自动测试任务的配置 -->
        <bean id="autoBatchTestTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
            <property name="jobDetail">
                <ref bean="autoBatchTestJobDetail" />
            </property>
            <property name="cronExpression">
                <value>*/20 * * * * ?</value>
            </property>
    
        </bean>
        <!-- 调度的配置结束 -->
    
        <!-- job的配置开始 -->
        <bean id="autoBatchTestJobDetail" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
            <property name="targetObject">
                <ref bean="autoBatchTestJob" />
            </property>
            <property name="targetMethod">
                <value>autoBatchTestTask</value>
            </property>
        </bean>
        <!-- job的配置结束 -->
    
        <!-- 工作的bean -->
        <bean id="autoBatchTestJob" class="reyo.sdk.websocket.quartz.QuartzTaskManager" />
        <!-- 自动测试任务结束 -->
    
    </beans>
  • 相关阅读:
    DEV控件GridControl常用属性设置(转)
    【649】shapely strtree STRtree 构建 RTree
    【648】计算直线间的夹角
    【646】灰度图array转为RGB三通道array
    【645】OpenCV 相关函数说明
    【644】二值图去掉面积小的部分 cv2.threshold
    Makefile中include、-include、sinclude
    openssh交叉编译
    四元数插值
    循环求余法
  • 原文地址:https://www.cnblogs.com/interdrp/p/4851500.html
Copyright © 2020-2023  润新知