读书人

spring 配备摘要

发布时间: 2012-10-21 09:00:08 作者: rapoo

spring 配置摘要

<!-- 启用 annotation -->
<context:annotation-config />

?

<!-- 使用 annotation 自动注册bean,并检查@Controller, @Service, @Repository注解已被注入 -->
<context:component-scan base-package="com.mapbar.mgisx.overlayobj" />

?

<!-- 环境文件加载 -->
<bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
??? ??? <property name="locations">
??? ??? ??? <list>
??? ??? ??? ??? <value>classpath:config/environment/hibernate.properties</value>
??? ??? ??? ??? <value>classpath:config/environment/dbcp.properties</value>
??? ??? ??? ??? <value>classpath:config/environment/mongodb.properties</value>
??? ??? ??? </list>
??? ??? </property>
</bean>

读书人网 >互联网

热点推荐