![JAR search and dependency download from the Maven repository](/logo.png)
spring.lts-jobtracker.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" xmlns:context="http://www.springframework.org/schema/context" 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" > <bean id="jobTracker" class="com.github.ltsopensource.spring.JobTrackerFactoryBean" init-method="start"> <property name="clusterName" value="test_cluster"/> <property name="registryAddress" value="zookeeper://127.0.0.1:2181"/> <property name="listenPort" value="30005"/> <property name="masterChangeListeners"> <list> <bean class="com.github.ltsopensource.example.support.MasterChangeListenerImpl"/> </list> </property> <property name="configs"> <props> <prop key="job.logger">mysql</prop> <prop key="job.queue">mysql</prop> <prop key="jdbc.url">jdbc:mysql://127.0.0.1:3306/lts</prop> <prop key="jdbc.username">root</prop> <prop key="jdbc.password">root</prop> </props> </property> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy