struts2的xml配置簡介

2021-08-31 21:54:52 字數 4415 閱讀 1923

先給乙個模板吧,看看struts.xml是什麼結構

doctype struts public "-//apache software foundation//dtd struts configuration 2.0//en" ""

>

<

struts

>

<

include

file

="struts-default.xml"

>

include

>

<

package

name

="com.kay.struts2"

extends

="struts-default"

namespace

="/test"

>

<

interceptors

>

<

interceptor

name

="timer"

class

="com.kay.timer"

>

interceptor

>

<

interceptor

name

="logger"

class

="com.kay.logger"

>

interceptor

>

<

interceptor-stack

name

="mystack"

>

<

interceptor-ref

name

="timer"

>

interceptor-ref

>

<

interceptor-ref

name

="logger"

>

interceptor-ref

>

interceptor-stack

>

interceptors

>

<

default-interceptor-ref

name

="mystack"

>

default-interceptor-ref

>

<

global-results

>

<

result

name

="input"

>

/error.jsp

result

>

global-results

>

<

action

name

="hello"

class

="com.kay.struts2.action.loginaction"

>

<

interceptor-ref

name

="timer"

>

interceptor-ref

>

<

result

name

="success"

type

="dispatcher"

>

/talk.jsp

result

>

<

param

name

="url"

>

param

>

action

>

package

>

struts

>

再看乙個小例子

1. 使用< include>標籤重用配置檔案

在struts2中提供了乙個預設的struts.xml檔案,但如果package、action、interceptors等配置比較多時,都放到乙個struts.xml檔案不太容易維護。因此,就需要將struts.xml檔案分成多個配置檔案,然後在struts.xml檔案中使用< include>標籤引用這些配置檔案。這樣做的優點如下:

結構更清晰,更容易維護配置資訊。

配置檔案可以復用。如果在多個web程式中都使用類似或相同的配置檔案,那麼可以使用< include>標籤來引用這些配置檔案,這樣可以減少工作量。

假設有乙個配置檔案,檔名為newstruts.xml,**如下:

<?xmlversion="1.0"encoding="utf-8"?>

/result.jsp

/result.jsp

則struts.xml引用newstruts.xml檔案的**如下:

<?xmlversion="1.0"encoding="utf-8"?>

大家要注意一下,用< include>引用的xml檔案也必須是完成的struts2的配置。實際上< include>在引用時是單獨解析的xml檔案,而不是將被引用的檔案插入到struts.xml檔案中。

2. action的別名

在預設情況下,struts2會呼叫動作類的execute方法。但有些時候,我們需要在乙個動作類中處理不同的動作。也就是使用者請求不同的動作時,執行動作類中的不同的方法。為了達到這個目的,可以在< action>標籤中通過method方法指定要指行的動作類的方法名,並且需要為不同的動作起不同的名子(也稱為別名)。如下面**所示:

<?xmlversion="1.0"encoding="utf-8"?>

上面**的兩個動作的class屬性都指向同乙個類,name為這個類起了兩個動作別名:test和my。在動作my中,使用了method屬性指定要要執行的方法名為my。

在myaction類中必須要有my方法,**如下:

packageaction;

importcom.opensymphony.xwork2.actionsupport;

publicclassmyactionextendsactionsupport

publicstringmy()throw***ception }

除了在struts.xml中配置別名,還可以通過請求引數來描述指定動作(並不需要在struts.xml中配置)。請求引數的格式如下:

3. 為action指定引數在struts2中還可以為action指定乙個或多個引數。大家還記著struts1.x是如何設定的action引數不? 在struts1.x中可以使用< action>標籤的parameter屬性為其指定乙個action引數,如果要指定多個,就只能通過逗號(,)或其他的分隔符將不同的引數隔開。而在struts2中可以通過< param>標籤指定任意多個引數。**如下:

value1

value2

/result.jsp

當然,在action中讀這些引數也非常簡單,只需要象獲取請求引數一樣在action類中定義相應的setter方法即可(一般不用定義getter方法)。如下面的**將讀取param1和param2引數的值:

packageaction;

importcom.opensymphony.xwork2.actionsupport;

publicclassmyactionextendsactionsupport

publicvoidsetparam1(stringparam1)

publicvoidsetparam2(stringparam2) }

當struts2在呼叫execute之前,param1和param2的值就已經是相應引數的值了,因此,在execute方法中可以直接使用param1和param2。

4. 選擇result型別

在預設時,< result>標籤的type屬性值是「dispatcher」(實際上就是**,forward)。開發人員可以根據自己的需要指定不同的型別,如redirect、stream等。如下面**所示:

/result.jsp

這此result-type可以在struts2-core-2.0.11.1.jar包或struts2源**中的struts-default.xml檔案中找到,在這個檔案中找到< result-types>標籤,所有的result-type都在裡面定義了。**如下:

5. 全域性result

有很多時候乙個< result>初很多< action>使用,這時可以使用< global-results>標籤來定義全域性的< result>,**如下:

/result.jsp

如果< action>中沒有相應的< result>,struts2就會使用全域性的< result>。

struts2中的XML操作配置

xml version 1.0 encoding utf 8 doctype struts public apache software foundation dtd struts configuration 2.1 en struts package name defaultlogin exten...

Struts2入門(一)Struts2簡介

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

struts2標籤簡介

用過struts1.x的人都知道,標籤庫有html bean logic tiles,而struts2.0裡的標籤卻沒有分類,只用在jsp標頭檔案加上 taglib prefix s uri struts tags 就能使用struts2.0的標籤庫 下面就介紹下每個標籤的用法 有錯請指正 a 超連...