spring框架的基本配置信息 web.xml 配置

使用spring,spring-mvc,MyBatis ssm整合框架开发,一个基本的web.xml配置。

最下面代码可以直接粘贴到web项目中WEB-INF下的web.xml中使用

spring框架的基本配置信息 web.xml 配置_第1张图片

spring框架的基本配置信息 web.xml 配置_第2张图片

spring框架的基本配置信息 web.xml 配置_第3张图片


xmlns="http://java.sun.com/xml/ns/javaee" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
 
 
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
 

 
 
      
    spring
   
    org.springframework.web.servlet.DispatcherServlet
   
   
      contextConfigLocation
      /WEB-INF/classes/spring-servlet.xml
   

   
    0
 

 
 
    spring
    /
 

 
 
   
    encodingFilter
    org.springframework.web.filter.CharacterEncodingFilter
   
     
      encoding
      UTF-8
   

   
   
      forceEncoding
      true
   

 

 
 
    encodingFilter
    /*
 

   
 
 
    org.springframework.web.context.ContextLoaderListener
 

 
 
    contextConfigLocation
    classpath:applicationContext.xml
 

你可能感兴趣的:(ssm项目配置)