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

spring.lts-tasktracker.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="springBean" class="com.github.ltsopensource.example.support.SpringBean"/>

    <!-- 方式1 -->
    <!-- 注解方式 -->
    <context:component-scan base-package="com.github.ltsopensource.example">
        <context:exclude-filter type="regex" expression="com.github.ltsopensource.example.springboot.*"/>
    </context:component-scan>

    <bean id="taskTracker" class="com.github.ltsopensource.spring.TaskTrackerAnnotationFactoryBean" init-method="start">
        <property name="jobRunnerClass" value="com.github.ltsopensource.example.support.SpringAnnotationJobRunner"/>
        <property name="bizLoggerLevel" value="INFO"/>
        <property name="clusterName" value="test_cluster"/>
        <property name="registryAddress" value="zookeeper://127.0.0.1:2181"/>
        <property name="nodeGroup" value="test_trade_TaskTracker"/>
        <property name="workThreads" value="20"/>
        <property name="masterChangeListeners">
            <list>
                <bean class="com.github.ltsopensource.example.support.MasterChangeListenerImpl"/>
            </list>
        </property>
        <property name="configs">
            <props>
                <prop key="job.fail.store">leveldb</prop>
            </props>
        </property>
    </bean>

    <!-- 方式2 -->
    <!-- xml 配置方式 -->
    <!--
    <bean id="taskTracker" class="com.github.ltsopensource.spring.TaskTrackerXmlFactoryBean" init-method="start">
        <property name="bizLoggerLevel" value="INFO"/>
        <property name="clusterName" value="test_cluster"/>
        <property name="registryAddress" value="zookeeper://127.0.0.1:2181"/>
        <property name="nodeGroup" value="test_trade_TaskTracker"/>
        <property name="workThreads" value="20"/>
        <property name="masterChangeListeners">
            <list>
                <bean class="com.github.ltsopensource.example.support.MasterChangeListenerImpl"/>
            </list>
        </property>
        <property name="configs">
            <props>
                <prop key="job.fail.store">leveldb</prop>
            </props>
        </property>
        <lookup-method name="createJobRunner" bean="jobRunner"/>
    </bean>
    <bean id="jobRunner" class="com.github.ltsopensource.example.support.SpringXmlJobRunner" scope="prototype">
        <property name="springBean" ref="springBean"/>
    </bean>
    -->
</beans>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy