Spring整合Structs2 的web.xml 基本配置



<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 
	xmlns="http://java.sun.com/xml/ns/javaee" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <display-name></display-name>	
  
  <!--   配置Structs2 的核心過濾器 -->
  <filter>
      <filter-name>structs2</filter-name>
      <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  <filter-mapping>
         <filter-name>structs2</filter-name>
         <url-pattern>/*</url-pattern>
  </filter-mapping>
  
  <!-- 配置Spring的配置文件 -->
  <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>
          classpath:beans.xml  <!-- Spring 配置文件所在的位置     classPath  表示Src 下的路徑 -->
             <!--  可以配置多個   /WEB-INF/conf/conf.xml  用“,”隔開  表示在/WEB-INF/conf/conf.xml的路徑下 --> 
      </param-value>
  </context-param>
  <listener>   
            <!-- 用Spring的contextLoaderListener 在項目啓動時就加載Spring的配置文件  -->
         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章