我有一个 jsp 和一个 struts 2.0 动作类。我在我的动作类中设置了一个列表,我将在我的 jsp 中使用它。
模型类是:
public class Student {
int stdid;
String stdName;
String stdroll;
Address stdAddress;
}
public class Address {
String houseNo;
String street;
String area;
String state;
String country;
String pin;
}
public class IteratorKFCAction extends ActionSupport{
private List<Student> studentList;
public List<Student> getStudentList() {
return studentList;
}
public void setStudentList(List<Student> studentList) {
this.studentList = studentList;
}
public String execute() {
studentList = new ArrayList<Student>();
studentList.add(std1);
studentList.add(std4);
studentList.add(std3);
studentList.add(std2);
return SUCCESS;
}
}
现在,在我的 jsp 上,我想显示每个学生的地址。我想用特定的密码显示学生的地址。有人能帮我吗。