hibernate中private Set<String> answers; 如何在.hbm.xml中配置
public class Question { private int qid;//问题id private Sting content;//问题题目内容 private Set answers = new HashSet();//问题待选答案 public Question(){ } public Question(int qid, String content){ this.qid = qid; this.content = content; } //getter() setter()}实体类如上,请问answers属性如何在Question.hbm.xml中配置呢? |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
编写这样的实体类,想问一下你的数据库表中的列是如何存储值得呢? |
|
|
|
|