All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spring.scheduler.xml Maven / Gradle / Ivy

The newest version!
<?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">

	<bean id="schedulerFactoryBean"
		class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
		<description>定时任务调度器工厂</description>
		<property name="schedulerName" value="iBase4J-Scheduler" />
		<property name="applicationContextSchedulerContextKey" value="applicationContext" />
		<property name="configLocation" value="classpath:config/quartz.properties" />
		<property name="dataSource" ref="dataSource" />
	</bean>

	<bean id="schedulerManager" class="com.wichell.core.support.scheduler.SchedulerManager">
		<property name="scheduler" ref="schedulerFactoryBean" />
		<property name="jobListeners">
			<list>
				<!--日志监控类型 -->
				<bean class="com.wichell.core.support.scheduler.JobListener" autowire="byName" />
			</list>
		</property>
	</bean>
</beans>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy