1. 程式人生 > 實用技巧 >spring各xml配置檔案及對映檔案的xml頭約束

spring各xml配置檔案及對映檔案的xml頭約束

springMVC.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.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"
> <!-- 配置建立 spring 容器要掃描的包 --> <context:component-scan base-package="com.itheima"></context:component-scan> <!-- 配置檢視解析器 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/pages/"
></property> <property name="suffix" value=".jsp"></property> </bean> </beans>

未完待續。。。