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で、各学生の住所を表示したいと思います。特定の暗証番号を持つ生徒の住所を表示したい。誰かが私を助けることができますか?