hibernate中private Set<String> answers; 如何在.hbm.xml中配置

public class Question {
    private int qid;//问题id
    private Sting content;//问题题目内容
    private Set<String> answers = new HashSet<String>();//问题待选答案
    
    public Question(){
        
    }

    public Question(int qid, String content){
        this.qid = qid;
        this.content = content;
    }
        
    //getter() setter()

}

实体类如上,请问answers属性如何在Question.hbm.xml中配置呢?

superkrissV
浏览 1234回答 1
1回答

yaoyaomice

编写这样的实体类,想问一下你的数据库表中的列是如何存储值得呢?
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java