mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-15 12:32:09 +08:00
24 lines
942 B
XML
24 lines
942 B
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.flowtest.components" />
|
|
|
|
<bean id="springAware" class="com.yomahub.liteflow.util.SpringAware"/>
|
|
|
|
<bean class="com.yomahub.liteflow.spring.ComponentScaner" depends-on="flowExecutor,springAware"/>
|
|
|
|
<bean id="flowExecutor" class="com.yomahub.liteflow.core.FlowExecutor">
|
|
<property name="rulePath">
|
|
<list>
|
|
<value>config/flow.xml</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
</beans>
|