spring.xml
2.47 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
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
<!-- 自动注入bean 加载@Resource -->
<context:component-scan base-package="cn.runsa.portal.base" >
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Controller" />
<context:exclude-filter type="annotation"
expression="org.springframework.web.bind.annotation.ControllerAdvice" />
</context:component-scan>
<import resource="classpath:spring-mybatis.xml"></import>
<!--
<import resource="classpath:quartz/spring-quartz.xml"></import>
<import resource="classpath:spring-ehcache.xml"/>
-->
<import resource="classpath:spring-redis.xml"/>
<aop:aspectj-autoproxy proxy-target-class="true" />
<!-- 配置文件加载 -->
<beans profile="develop">
<bean class="org.apache.commons.configuration.CompositeConfiguration">
<constructor-arg>
<list>
<bean class="org.apache.commons.configuration.SystemConfiguration" />
<bean class="org.apache.commons.configuration.PropertiesConfiguration">
<constructor-arg type="String" value="resource-develop.properties" />
</bean>
</list>
</constructor-arg>
</bean>
</beans>
<beans profile="product">
<bean class="org.apache.commons.configuration.CompositeConfiguration">
<constructor-arg>
<list>
<bean class="org.apache.commons.configuration.SystemConfiguration" />
<bean class="org.apache.commons.configuration.PropertiesConfiguration">
<constructor-arg type="String" value="resource-product.properties" />
</bean>
</list>
</constructor-arg>
</bean>
</beans>
</beans>