| 1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
- xmlns:cache="http://www.springframework.org/schema/cache" xmlns:util="http://www.springframework.org/schema/util"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
- http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
- <!-- 注册spring上下文对象 -->
- <bean class="com.uas.platform.home.core.support.ApplicationContextRegister" />
- <!-- 扫描注解 -->
- <context:annotation-config />
- <!-- 扫描的包 -->
- <context:component-scan base-package="com.uas.platform.home" />
- <!-- 账户中心配置 -->
- <bean id="accountConfigurer" class="com.uas.account.web.AccountConfigurer"
- init-method="init">
- <property name="configPath" value="classpath:conf/account.properties" />
- </bean>
- <util:properties id="url"
- location="classpath:conf/httpAddress.properties" />
- </beans>
|