Using the configuration file web.xml ssm framework for the development of WEB-INF

<? xml Version = "1.0" encoding = "UTF-8"?> 
<Web-App xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" 
         xmlns = "HTTP: // the 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 "Version =" 2.5 "> 
  <the display-name> the Archetype the Created the Web the Application </ the display-name> 

  <-! set global parameters for reading core profile -> 
  <context-param> 
        <param- name> the contextConfigLocation </ param-name> 
        <param-value> CLASSPATH: applicationContext_service.xml </ param-value> 
  </ context-param> 

  <- set the listener, when the web container is started, the automatic assembly applicationContext!.xml configuration file -> 
  <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <!--设置编码过滤器,已解决中文乱码问题-->
  <filter>
      <filter-name>CharacterEncodingFilter</filter-name>
      <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
          <init-param>
              <param-name>encoding</param-name>
              <param-value>utf-8</param-value>
          </init-param>
      
          <init-param>
              <param-name>forceEncoding</param-name>
              <param-value>true</param-value>
          </init-param>
  </filter>
  
  <filter-mapping>
          <filter-name>CharacterEncodingFilter</filter-name>
          <url-pattern>/*</url-pattern>
  </filter-mapping>

  <!--设置前端控制器-->
  <servlet>
      <servlet-name>DispatcherServlet</servlet-name>
      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
          <!--设置初始化参数,用来读取spring_mvc配置文件-->
          <init-param>
              <param-name>contextConfigLocation</param-name>
              <param-value>classpath:spring_mvc.xml</param-value>
          </init-param>
  </servlet>
  
  <servlet-mapping>
          <servlet-name>DispatcherServlet</servlet-name>
          <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

  

 

Guess you like

Origin www.cnblogs.com/Hubert-dzl/p/11456974.html