采用基本类型接收请求参数
在 Action 类中定义与请求参数同名的属性,Struts2 便能自动接收请求参数并赋予给同名属性。
请求路径:http://localhost:8080/test/view.action?id=78
public class ProductAction {
private Integer id;
public void setId(Integer id) {
// Struts2 通过反射技术调用与请求参数同名的属性的 setter 方法来获取请求参数值
this.id = id;
}
public Integer getId() {
return id;
}
}
采用复合类型接收请求参数
请求路径:http://localhost:8080/test/view.action?product.id=78
public class ProductAction {
private Product product;
public void setProduct(Product product) {
this.product = product;
}
public Product getProduct() {
return product;
}
}
Struts2 首先通过反射技术调用 Product 的默认构造器创建 product 对象,然后再通过反射技术调用 product 中与请求参数同名的属性的 setter 方法来获取请求参数值。

