struts2 8 接受顯示層傳遞的引數

2021-06-23 09:01:36 字數 1595 閱讀 5821

struts.xml檔案的配置:

/show.jsp

(一)採用基本型別接受引數(get/post

):

在action

型別中定義與請求引數同名的屬性,

struts2

便能自動接受請求引數並賦予給同名屬性。

1)

action

中的**:

private integer id;

private string name;

public integer getid()

public void setid(integer id)

public string getname()

public void setname(string name)

public string execute()

2)輸入顯示層的**:

3)輸出顯示層的**:

id   =  $ 

name = $

請求路徑:

(二)復合型別接收請求引數:(推薦使用)

1)

action

中的**:

public class employeeaction 

public void setperson(person person)

public string execute()

}

2)person類:

public class person 

public void setid(integer id)

public string getname()

public void setname(string name)

}

3)輸入層的**:

4)輸出層的**:

id   = $

name = $

請求路徑:

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...

struts2學習筆記 struts2的配置檔案

一 struts.xml定義bean的作用 1.建立該bean的例項,將該例項作為struts2框架的核心元件使用。2.bean包含的靜態方法需要乙個值注入。很方便地允許不建立某個類的例項,卻可以接受框架常量。通常需要設定static true 通常,當指定了type屬性時,該屬性不應該制定為tru...