beans.xml 3.73 KB
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:sca="http://www.springframework.org/schema/sca" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd   http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd   http://www.springframework.org/schema/sca http://www.osoa.org/xmlns/sca/1.0/spring-sca.xsd">
    <bean id="CapUserBean1" parent="DefaultBaseTransactionProxy">
        <property name="proxyInterfaces">
            <list>
                <value>com.huaheng.wms.ICapUserService</value>
            </list>
        </property>
        <property name="target">
            <bean class="com.huaheng.wms.CapUserService">
                <property name="dataSource" ref="DefaultDataSource"/>
            </bean>
        </property>
    </bean>
    <bean id="WmsApiLogBean" parent="DefaultBaseTransactionProxy">
        <property name="proxyInterfaces">
            <list>
                <value>com.huaheng.wms.IWmsApiLogService</value>
            </list>
        </property>
        <property name="target">
            <bean class="com.huaheng.wms.WmsApiLogService">
                <property name="dataSource" ref="DefaultDataSource"/>
            </bean>
        </property>
    </bean>
    <bean id="WmsShelvesInventoryBean" parent="DefaultBaseTransactionProxy">
        <property name="proxyInterfaces">
            <list>
                <value>com.huaheng.wms.IWmsShelvesInventoryService</value>
            </list>
        </property>
        <property name="target">
            <bean class="com.huaheng.wms.WmsShelvesInventoryService">
                <property name="dataSource" ref="DefaultDataSource"/>
            </bean>
        </property>
    </bean>
    <bean id="WmsInventoryDetailBean" parent="DefaultBaseTransactionProxy">
        <property name="proxyInterfaces">
            <list>
                <value>com.huaheng.wms.IWmsInventoryDetailService</value>
            </list>
        </property>
        <property name="target">
            <bean class="com.huaheng.wms.WmsInventoryDetailService">
                <property name="dataSource" ref="DefaultDataSource"/>
            </bean>
        </property>
    </bean>
    <bean id="WmsContainerBean" parent="DefaultBaseTransactionProxy">
        <property name="proxyInterfaces">
            <list>
                <value>com.huaheng.wms.IWmsContainerService</value>
            </list>
        </property>
        <property name="target">
            <bean class="com.huaheng.wms.WmsContainerService">
                <property name="dataSource" ref="DefaultDataSource"/>
            </bean>
        </property>
    </bean>
    <bean id="WmsLocationBean" parent="DefaultBaseTransactionProxy">
        <property name="proxyInterfaces">
            <list>
                <value>com.huaheng.wms.IWmsLocationService</value>
            </list>
        </property>
        <property name="target">
            <bean class="com.huaheng.wms.WmsLocationService">
                <property name="dataSource" ref="DefaultDataSource"/>
            </bean>
        </property>
    </bean>
    <bean id="WmsTaskHeaderBean" parent="DefaultBaseTransactionProxy">
        <property name="proxyInterfaces">
            <list>
                <value>com.huaheng.wms.IWmsTaskHeaderService</value>
            </list>
        </property>
        <property name="target">
            <bean class="com.huaheng.wms.WmsTaskHeaderService">
                <property name="dataSource" ref="DefaultDataSource"/>
            </bean>
        </property>
    </bean>
</beans>