mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
23 lines
1.0 KiB
XML
23 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://www.springframework.org/schema/beans"
|
|
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">
|
|
|
|
<context:component-scan base-package="com.yomahub.liteflow.test.zookeeper.cmp" />
|
|
|
|
<bean id="springAware" class="com.yomahub.liteflow.spi.spring.SpringAware"/>
|
|
|
|
<bean class="com.yomahub.liteflow.spring.ComponentScanner"/>
|
|
|
|
<bean id="liteflowConfig" class="com.yomahub.liteflow.property.LiteflowConfig">
|
|
<property name="ruleSource" value="xml:127.0.0.1:21810"/>
|
|
</bean>
|
|
|
|
<bean id="flowExecutor" class="com.yomahub.liteflow.core.FlowExecutor">
|
|
<constructor-arg name="liteflowConfig" ref="liteflowConfig"/>
|
|
</bean>
|
|
</beans> |