程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> stuct2接收請求參數

stuct2接收請求參數

編輯:關於JSP

接收請求參數
1:
http://127.0.0.1:8080/struct2341/test/helloworld.do?id=123
這樣對於的action類就會通過反射機制獲得id名字匹配;用表單也可以使用post提交的
public class HelloWorldAction {
private Integer id;
private String message;
private Person person;


2: 使用復合類型

1表單提交到對應控制器


2 action中有對應person的get和set 方法
import cn.itcast.bean.Person;
public class HelloWorldAction {
private Integer id;
private String message;
private Person person;

3 要在對應的包下定義Person類
package cn.itcast.bean;
public class Person {
private Integer id;
public Integer getId() {return id;}
public void setId(Integer id) {this.id = id;}
}

4 顯示在對應的視圖 id=${person.id}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved