zj
2025-05-02 01830e44921b187b448d8cce9c9a46b9ad55af43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    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">         
    
    <bean id="financeService" class="project.finance.internal.FinanceServiceImpl">
        <property name="jdbcTemplate" ref="jdbcTemplate" />
        <property name="redisHandler" ref="redisHandler" />
        <property name="secUserService" ref="secUserService" />
        <property name="passwordEncoder" ref="passwordEncoder" />
    </bean>
    
    <bean id="financeOrderService" class="project.finance.internal.FinanceOrderServiceImpl">
        <property name="jdbcTemplate" ref="jdbcTemplate" />
        <property name="walletService" ref="walletService" />
        <property name="moneyLogService" ref="moneyLogService" />
        <property name="financeService" ref="financeService" />
        <property name="userDataService" ref="userDataService" />
        <property name="partyService" ref="partyService" />
        <property name="sysparaService" ref="sysparaService" />
        <property name="userRecomService" ref="userRecomService" />
    </bean>
    
    <bean id="adminFinanceService" class="project.finance.internal.AdminFinanceServiceImpl">
        <property name="pagedQueryDao" ref="pagedDao" />
    </bean>
    
    <bean id="adminFinanceOrderService" class="project.finance.internal.AdminFinanceOrderServiceImpl">
        <property name="pagedQueryDao" ref="pagedDao" />
        <property name="userRecomService" ref="userRecomService" />
    </bean>
    
    <bean id="financeOrder1DayJob" class="project.finance.job.FinanceOrder1DayJob">
        <property name="financeOrderService" ref="financeOrderService" />
        <property name="sysLogService" ref="sysLogService" />
    </bean>    
</beans>