8be044ec7e987fabed3e068f4292842b98480161.svn-base
3.4 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<!-- 点击service-->
<bean id="yxyreadservice" class="yxy.timer.service.impl.YxyReadServiceImpl">
<!-- 点击信息DAO -->
<property name="yxyreaddao">
<ref bean="yxyreaddao"/>
</property>
<!-- 退订信息DAO -->
<property name="yxyunsubscribedao">
<ref bean="yxyunsubscribedao"/>
</property>
<!-- 今日点击信息DAO -->
<property name="yxydayreaddao">
<ref bean="yxydayreaddao"/>
</property>
<property name="yxymailnumcountdao">
<ref bean="yxymailnumcountdao"/>
</property>
<property name="yxyreadinfosaledao" ref="yxyreadinfosaledao"></property>
<property name="yxyunsubscribeinfosaledao" ref="yxyunsubscribeinfosaledao"></property>
<property name="yxymailnumcountinfosaledao" ref="yxymailnumcountinfosaledao"></property>
</bean>
<!-- 地址service-->
<bean id="yxyaddressservice" class="yxy.timer.service.impl.YxyAddressServiceImpl">
<!-- 用户设置DAO -->
<property name="yxyusersetdao">
<ref bean="yxyusersetdao"/>
</property>
<!-- 用户地址DAO -->
<property name="yxyuseraddressdao">
<ref bean="yxyuseraddressdao"/>
</property>
<!-- 待发地址DAO -->
<property name="yxysendmaildetaildao">
<ref bean="yxysendmaildetaildao"/>
</property>
</bean>
<!-- 回复service-->
<bean id="yxyreplyinfoservice" class="yxy.timer.service.impl.YxyReplyInfoServiceImpl">
<property name="yxyreplyinfodao">
<ref bean="yxyreplyinfodao"/>
</property>
<property name="yxymailnumcountdao">
<ref bean="yxymailnumcountdao"/>
</property>
</bean>
<!-- 待发邮件service-->
<bean id="yxysendmailmasterservice" class="yxy.timer.service.impl.YxySendMailMasterServiceImpl">
<!-- 待发邮件DAO -->
<property name="yxysendmailmasterdao">
<ref bean="yxysendmailmasterdao"/>
</property>
</bean>
<!-- 邮件签名service -->
<bean id="yxywebmailservice" class="yxy.timer.service.impl.YxyWebmailServiceImpl">
<property name="yxywebmaildao">
<ref bean="yxywebmaildao"/>
</property>
</bean>
<!-- 控制参数service-->
<bean id="yxysysparamaterservice" class="yxy.timer.service.impl.YxySysParamaterServiceImpl">
<!-- 参数DAO -->
<property name="yxysysparamaterdao">
<ref bean="yxysysparamaterdao"/>
</property>
<!-- 参数值DAO -->
<property name="yxysysparamatersvaluedao">
<ref bean="yxysysparamatersvaluedao"/>
</property>
</bean>
<!-- 链接详情service -->
<bean id="yxylinkinfoservice" class="yxy.timer.service.impl.YxyLinkInfoServiceImpl">
<property name="yxylinkinfodao">
<ref bean="yxylinkinfodao"/>
</property>
<property name="yxymailnumcountdao">
<ref bean="yxymailnumcountdao"/>
</property>
<property name="yxylinkinfosaledao" ref="yxylinkinfosaledao"></property>
<property name="yxymailnumcountinfosaledao" ref="yxymailnumcountinfosaledao"></property>
</bean>
</beans>