首页 > 代码库 > Spring MVC 配置文件dispatcher-servlet.xml 文件详解

Spring MVC 配置文件dispatcher-servlet.xml 文件详解

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.2.xsd
            http://www.springframework.org/schema/mvc
            http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
    <!-- 使用spring提供的PropertyPlaceholderConfigurer读取数据库配置信息.properties
     1、这里的classpath可以认为是项目中的src-
     2、属性名是 locations,使用子标签<list></list>可以指定多个数据库的配置文件,这里指定了一个
     其中order属性代表其加载顺序,而ignoreUnresolvablePlaceholders为是否忽略不可解析的 Placeholder,
     如配置了多个PropertyPlaceholderConfigurer,则需设置为true
     <bean id="propertyConfigurerForProject2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="order" value=http://www.mamicode.com/"2" />>
</beans>

Spring MVC 配置文件dispatcher-servlet.xml 文件详解