struts2 Action基於xml配置

2021-08-30 23:58:59 字數 455 閱讀 8161

在struts2使用 struts.xml來配置action時,

action的xml節點基本格式如下所示:

/index.jsp

此時,當在瀏覽器端傳送請求 http://localhost:8080/***/login 時

執行的時com.test.login.execute方式

那麼當需要com.test.login類響應不同的 action請求時,則需使用 的method屬性

...

...

此時,當在瀏覽器端傳送請求 http://localhost:8080/***/login 時 會執行com.test.login.method1方法

而傳送請求 http://localhost:8080/***/regist時 會執行com.test.login.method2方法

struts2 action 配置方法

struts2 action幾乎完全吸收了xwork 的精華,近日學習struts 2,總結一下action的配製方法。首先看一下com.opensymphony.xwork2.action的介面宣告,action提供execute 方法,子類必須實現execute 方法。public inte c...

struts2 action中result引數詳解

chain 用來處理action鏈 com.opensymphony.xwork2.actionchainresult dispatcher 用來轉向頁面,通常處理jsp org.apache.struts2.dispatcher.servletdispatcherresult freemaker ...

Struts2 Action獲取Scope物件

方式 一 與servlet解耦合的非ioc方式 獲取的scope物件與容器無關,通過actioncontext獲取。loginaction 如下 package com.asm public class loginaction extends actionsupport 省略username的get...