first commit
This commit is contained in:
34
comm/Exchange/config/spring/applicationContext-exchange.xml
Executable file
34
comm/Exchange/config/spring/applicationContext-exchange.xml
Executable file
@@ -0,0 +1,34 @@
|
||||
<?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:dubbo="http://code.alibabatech.com/schema/dubbo"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://code.alibabatech.com/schema/dubbo
|
||||
http://code.alibabatech.com/schema/dubbo/dubbo.xsd ">
|
||||
|
||||
|
||||
<bean id="exchangeApplyOrderService"
|
||||
class="project.exchange.internal.ExchangeApplyOrderServiceImpl" >
|
||||
<property name="hibernateTemplate" ref="hibernateTemplate" />
|
||||
<property name="pagedQueryDao" ref="pagedDao" />
|
||||
<property name="sysparaService" ref="sysparaService" />
|
||||
<property name="itemService" ref="itemService" />
|
||||
<property name="moneyLogService" ref="moneyLogService" />
|
||||
<property name="walletService" ref="walletService" />
|
||||
<property name="userDataService" ref="userDataService" />
|
||||
<property name="dataService" ref="dataService" />
|
||||
|
||||
|
||||
</bean>
|
||||
|
||||
|
||||
<bean id="walletExtendCostUSDTService"
|
||||
class="project.exchange.internal.WalletExtendCostUSDTServiceImpl" >
|
||||
<property name="hibernateTemplate" ref="hibernateTemplate" />
|
||||
</bean>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</beans>
|
||||
30
comm/Exchange/config/spring/applicationContext-exchange_admin.xml
Executable file
30
comm/Exchange/config/spring/applicationContext-exchange_admin.xml
Executable file
@@ -0,0 +1,30 @@
|
||||
<?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:dubbo="http://code.alibabatech.com/schema/dubbo"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://code.alibabatech.com/schema/dubbo
|
||||
http://code.alibabatech.com/schema/dubbo/dubbo.xsd ">
|
||||
|
||||
<bean id="adminExchangeApplyOrderService"
|
||||
class="project.exchange.internal.AdminExchangeApplyOrderServiceImpl">
|
||||
<property name="hibernateTemplate" ref="hibernateTemplate" />
|
||||
<property name="pagedQueryDao" ref="pagedDao" />
|
||||
<property name="userRecomService" ref="userRecomService" />
|
||||
</bean>
|
||||
|
||||
<bean id="exchangeApplyOrderService"
|
||||
class="project.exchange.internal.ExchangeApplyOrderServiceImpl" >
|
||||
<property name="hibernateTemplate" ref="hibernateTemplate" />
|
||||
<property name="pagedQueryDao" ref="pagedDao" />
|
||||
<property name="sysparaService" ref="sysparaService" />
|
||||
<property name="partyService" ref="partyService" />
|
||||
<property name="itemService" ref="itemService" />
|
||||
<property name="moneyLogService" ref="moneyLogService" />
|
||||
<property name="walletService" ref="walletService" />
|
||||
<property name="userDataService" ref="userDataService" />
|
||||
<property name="dataService" ref="dataService" />
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
32
comm/Exchange/config/spring/applicationContext-exchange_data.xml
Executable file
32
comm/Exchange/config/spring/applicationContext-exchange_data.xml
Executable file
@@ -0,0 +1,32 @@
|
||||
<?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:dubbo="http://code.alibabatech.com/schema/dubbo"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://code.alibabatech.com/schema/dubbo
|
||||
http://code.alibabatech.com/schema/dubbo/dubbo.xsd ">
|
||||
|
||||
|
||||
<bean id="exchangeApplyOrderService"
|
||||
class="project.exchange.internal.ExchangeApplyOrderServiceImpl" >
|
||||
<property name="hibernateTemplate" ref="hibernateTemplate" />
|
||||
<property name="pagedQueryDao" ref="pagedDao" />
|
||||
<property name="sysparaService" ref="sysparaService" />
|
||||
<property name="partyService" ref="partyService" />
|
||||
<property name="itemService" ref="itemService" />
|
||||
<property name="moneyLogService" ref="moneyLogService" />
|
||||
<property name="walletService" ref="walletService" />
|
||||
<property name="userDataService" ref="userDataService" />
|
||||
<property name="dataService" ref="dataService" />
|
||||
|
||||
</bean>
|
||||
<bean id="exchangeApplyOrderHandleJob"
|
||||
class="project.exchange.job.ExchangeApplyOrderHandleJob" >
|
||||
<property name="exchangeApplyOrderService" ref="exchangeApplyOrderService" />
|
||||
<property name="dataService" ref="dataService" />
|
||||
</bean>
|
||||
|
||||
|
||||
|
||||
|
||||
</beans>
|
||||
13
comm/Exchange/config/spring/applicationContext-hibernate.xml
Executable file
13
comm/Exchange/config/spring/applicationContext-hibernate.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
|
||||
admin
|
||||
|
||||
<!-- exchange -->
|
||||
<value>adminExchangeApplyOrderService</value>
|
||||
<value>exchangeApplyOrderService</value>
|
||||
|
||||
|
||||
api
|
||||
<!-- exchange -->
|
||||
|
||||
<value>exchangeApplyOrderService</value>
|
||||
<value>walletExtendCostUSDTService</value>
|
||||
15
comm/Exchange/config/spring/normal.xml
Executable file
15
comm/Exchange/config/spring/normal.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
|
||||
admin
|
||||
|
||||
<action name="adminExchangeApplyOrderAction"
|
||||
class="project.exchange.web.AdminExchangeApplyOrderAction">
|
||||
<result name="list">/exchange_order_list.jsp</result>
|
||||
<!-- <result name="result_make" type="json"> -->
|
||||
<!-- <param name="root">result_make</param> -->
|
||||
<!-- </result> -->
|
||||
</action>
|
||||
|
||||
api
|
||||
<action name="exchangeapplyorder"
|
||||
class="project.exchange.web.ExchangeApplyOrderAction">
|
||||
</action>
|
||||
Reference in New Issue
Block a user