接收請求參數
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}