manager_Test.xml
1.95 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
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
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="byType">
<context:component-scan base-package="com.xiniunet.*.biz">
<context:include-filter type="regex" expression=".*Impl"/>
</context:component-scan>
<context:component-scan base-package="com.xiniunet.*.svc">
<context:include-filter type="regex" expression=".*Impl"/>
</context:component-scan>
<context:component-scan base-package="com.xiniunet.*.dal">
<context:include-filter type="regex" expression=".*Impl"/>
</context:component-scan>
<context:component-scan base-package="com.xiniunet.quartz.base">
<context:include-filter type="regex" expression=".*Impl"/>
</context:component-scan>
<context:component-scan base-package="com.xiniunet.quartz" />
<bean id="springContextUtil" class="com.xiniunet.framework.message.SpringContextUtil"/>
<bean id="springContext" class="com.xiniunet.framework.util.SpringContext" />
<context:component-scan base-package="com.xiniunet.web.helper"/>
<bean id="passport" class="com.xiniunet.framework.security.Passport">
<property name="id" value="1"/>
<property name="tenantId" value="512824102474878976"/>
<property name="userId" value="532768031404068864"/>
<property name="userName" value="沈振家"/>
<property name="revokeType" value="NONE"/>
<property name="issueIP" value="192.168.88.248"/>
<property name="issueClient" value="1004"/>
</bean>
<import resource="dubbo-web-consumer.xml" />
</beans>