1. 程式人生 > >struts2通用的web.xml基本配置

struts2通用的web.xml基本配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<!-- 對spring容器進行例項化 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:beans.xml</param-value>
</context-param>

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- 在部署之前先清除環境 -->
<filter>
<filter-name>struts-cleanup</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ActionContextCleanUp
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts-cleanup</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.FilterDispatcher
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>

相關推薦

struts2通用web.xml基本配置

<?xml version="1.0" encoding="UTF-8"?><web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.

SpringMVC之web.xml基本配置

web.xml檔案的作用: 1.指定webapp的名稱 <display-name>SpringMVCDemo</display-name> 2.初始化上下文引數,裝載spring配置 <context-param> <param-

關於Struts2web.xml配置後出現404錯誤的問題

     在將Struts專案完成後,在瀏覽器中卻不能正確顯示,如下:      但將過濾器filter刪除後,又能遊覽開始頁(當然功能 經過我的多次測試,發現好像與上述原因無關,充滿了玄學的感覺。。。。。。。大概是包的問題。等我緩過來了再看 上面全

struts2web.xml配置詳情

web.xml是web應用中載入有關servlet資訊的重要配置檔案,起著初始化servlet,filter等web程式的作用。 通常,所有的MVC框架都需要Web應用載入一個核心控制器,那採取什麼方法載入這樣的核心控制器呢,servlet或filter成為了很好的選擇,

struts2web.xml配置詳解

任何MVC框架都需要與Web應用整合,這就不得不借助於web.xml檔案,只有配置在web.xml檔案中Servlet才會被應用載入。通常,所有的MVC框架都需要Web應用載入一個核心控制器,對於Struts2框架而言,需要載入FilterDispatcher,只要Web應

struts2web.xml中的基本配置

<filter><filter-name>struts2</filter-name><filter-class>org.apache.struts2.d

Struts2控制器以及struts.xmlweb.xml配置(1)

MVC設計模式MVC設計模式的宗旨是把一個Web應用的輸入、處理和輸出流程按照Model、View、和Controller的方式進行分離,這樣一個應用就被分成3個層:模型層、檢視層、和控制層。檢視(view):檢視代表使用者互動介面。MVC對於檢視的處理僅限於檢視中資料的採集

javaweb專案中引入struts2web.xml的詳細配置和註釋

web.xml是web應用中載入有關servlet資訊的重要配置檔案,起著初始化servlet,filter等web程式的作用。  通常,所有的MVC框架都需要Web應用載入一個核心控制器,那採取什麼方法載入這樣的核心控制器呢,servlet或filter成為了很好的選擇

struts2避擴音交表單產生亂碼的web.xml配置

<filter> <filter-name>characterEncodingFilter</filter-name> <fil

Struts2web.xml中的url-pattern路徑配置為/*.action時,Tomcat一啟動執行就報錯(嚴重: A child container failed during star)

Struts2中web.xml中的url-pattern路徑配置錯誤導致Tomcat一起動就報錯。   如上圖url-pattern配置為/*.action  (錯誤)      修改成:      

struts2 2.5以上版本安裝中web.xml配置(包括核心過濾器filter)

<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-

struts1和struts2web.xml配置的區別

Struts1中的核心控制器是ActionServlet,是一個Servlet;而到了Struts2核心控制器是FilterDispatcher,是一個Filter; Struts1是封裝了Servlet的框架,而Struts2是封裝了過濾器Filter的框架,原因是s

struts2需要在web.xml配置的過濾器

使用Struts2.3.16時,過濾器使用org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter使用struts2.5.14時,過濾器使用org.apache.struts2.dispatch

struts2web.xml配置寫法

<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5"     xmlns="http://java.sun.com/xml/ns/javaee"     xmlns:xsi="htt

Struts2web.xml(前端控制器的配置

<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http:

Struts2web.xml,struts.xml配置中出現404錯誤,解決方案

在JSP開發中使用struts2框架,配置web.xml和struts.xml後,jsp文件執行都是404錯誤 找了很多方法,都不能解決問題,最終發現是struts包的配置問題,最新的struts2.5.8的版本與2.3之前的版本有很大不同 像xwork.core的包就被整

web.xml配置spring監聽器和spring配置文件位置

nco erl spring XML param onf ati spa extc <!-- spring配置文件位置 --> <context-param> <param-name>contextConfigLocation</

Servlet開發技術,創建,以及Servlet的配置web.xml配置

pla 註意事項 sets getwriter 復制代碼 pac todo oge getc 直接上圖,不廢話!!! 第一:首先在Eclipse的包資源管理器中,單機鼠標右鍵,在彈出的快捷鍵菜單中選擇“新建”/Servlet命令,在彈出的對話框中輸

服務器啟動時Webapp的web.xml配置的加載順序

結點 得到 類型 man authent 一個tomcat web www conf 一 1、啟動一個WEB項目的時候,WEB容器會去讀取它的配置文件web.xml,讀取<listener>和<context-param>兩個結點。 2、緊急著,

SSM的XMLWEB.XML配置

erl 視圖 核心 contex select 3.0 agg oct eth 顯示層(handler/controller):   request請求到springmvc的前端控制器,從處理器映射器找相應的handler(用@RequestMapping(" ")標註,