大家好。我有以下结果集,现在我希望将其保存在 java bean 中。我有两个 java beans(pojo)。
public class Topic{
private int topic_id;
private String topic;
private List<SubTopic> subTopicList;
//getter setter
}
和
public class SubTopic{
private int sub_topic_id;
private String sub_topic;
//getter and setter
}
现在我想设置我的Topic
对象,使其包含一个主题和所有子主题的列表。但是我在迭代结果集时遇到问题。为了更清楚地说明一个包含心脏病学的主题对象应该有,
topic_id=73
topic=Cardiology
List<SubTopic> subTopic=//this includes id and name of SubTopic and SubTopic2
同样的另一个对象应该是过敏、哮喘、免疫学。
ResultSet rs = pstmt.executeQuery();
//now how to iterate rs to create list of topic object in required way