mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-06-12 13:41:05 +08:00
20 lines
866 B
XML
20 lines
866 B
XML
<?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.xsd
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context.xsd"
|
|
default-autowire="byName">
|
|
|
|
<context:component-scan base-package="com.thebeastshop.liteflow.test.component" />
|
|
<bean class="com.thebeastshop.liteflow.spring.ComponentScaner"/>
|
|
|
|
<bean id="flowExecutor" class="com.thebeastshop.liteflow.core.FlowExecutor">
|
|
<property name="rulePath">
|
|
<list>
|
|
<value>config/flow.xml</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
</beans> |