spring.scheduler.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wichell-common Show documentation
Show all versions of wichell-common Show documentation
common project com.wichell.wichell jar
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