| 1234567891011121314151617181920212223242526 |
- <?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-3.0.xsd">
- <!-- quartz-调度器 -->
- <bean id="quartzScheduler" lazy-init="false" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
- <property name="dataSource" ref="dataSource" />
- <property name="autoStartup" value="true" /> <!--自动启动 -->
- <property name="startupDelay" value="20" /> <!--延时启动 -->
- <property name="applicationContextSchedulerContextKey" value="applicationContextKey" />
- <property name="configLocation" value="classpath:quartz.properties"/>
- </bean>
-
- <!-- 协同-调度器 -->
- <bean id="dynamicSchedulerUtil" class="com.xxl.job.admin.core.schedule.XxlJobDynamicScheduler" init-method="init" destroy-method="destroy" >
- <!-- (轻易不要变更“调度器名称”, 任务创建时会绑定该“调度器名称”) -->
- <property name="scheduler" ref="quartzScheduler"/>
- <!-- 调度中心回调IP[选填],为空则自动获取 -->
- <!--<property name="callBackIp" value=""/>-->
- <!-- 调度中心回调端口号 -->
- <property name="callBackPort" value="8888"/>
- </bean>
- </beans>
|