Struts 2 Struts2 詳細配置

2022-01-18 01:17:06 字數 989 閱讀 6051

全域性配置:

配置在packe

中,所有

action

的上面。

/頁面/頁面

區域性結果優先順序高於全域性。

異常資訊配置:

404異常、

500異常(

web.xml

配置)404

/error.jsp

500/error.jsp

包(package

)配置:

所有的action

配置,都必須在包中。

/jsp頁面路徑

注意:action

中的name

屬性可以使用模糊匹配。使用「*」

一般規則:name=

「名字_*

」  method=」」

示例:語法規則:action名!

方法名.action

|redirect|redirectaction」>

預設—— 表示內部跳轉

redirect —— 外部跳轉

redirectaction —— 跳轉到指定的

action

(必須設定兩個引數:

namespace

、actionname

)系統常量配置(環境配置):

所有struts

的常量:

struts2-core-x.x.x.jar 

包中的default.properties

struts.i18n.encoding=utf-8  系統編碼

struts.objectfactory = spring  struts與spring框架結合時設定

struts.devmode = false   啟用struts的除錯資訊(詳細更詳細的錯誤資訊)

struts.multipart.maxsize=2097152   設定檔案上傳大小

struts.custom.i18n.resources=資源檔名  國際化時,指定資源檔案

struts2 struts2中的流接收與流傳送

流接收 如今舉乙個傳公鑰的樣例。struts2用乙個action接收key,而key就是用http二進位制流傳過來的。配置檔案struts.xml寫起來非常easy web inf content success.jsp web inf content error.jsp 僅僅是簡單的指定了用pub...

Struts2字尾 深入Struts2

一 將action字尾變成html字尾 xmlversion 1.0 encoding utf 8 doctype struts public apache software foundation dtd struts configuration 2.1 en struts include file...

Struts2入門(一)Struts2簡介

本章簡要介紹一下struts2框架 1.概念 我們知道,springmvc框架是為了整合servlet設計的控制層框架,那麼還有其他的框架也實現了這個功能,那麼就是struts2。struts2是乙個基於mvc設計模式的web應用框架,它本質上相當於乙個servlet,在mvc設計模式中,strut...