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>

你可能感兴趣的:(spring)