我有两张桌子:
<class name="Content" table="language_content" lazy="false">
<composite-id>
<key-property name="contentID" column="contentID"/>
<key-property name="languageID" column="languageID"/>
</composite-id>
<property name="Content" column="Content" />
</class>
和
<class name="SecretQuestion" table="secretquestions" lazy="true">
<id name="questionID" type="integer" column="QuestionID">
<generator class="increment"></generator>
</id>
<property name="question" column="Question"/>
<property name="isUsing" column="IsUsing"/>
<bag name="contents" inverse="true" cascade="all,delete-orphan">
<key column="question" />
<one-to-many class="Content" />
</bag>
</class>
我正在尝试将SecretQuestion的“问题”属性映射到内容的“contentID”属性,但Eclipse会抛出异常:
org.hibernate.exception.SQLGrammarException: could not initialize a collection: [com.sms.model.entity.SecretQuestion.contents#1]
如果我将<key column="question" />
替换为<key column="contentID" />
,它可以运行但映射错误的数据(实际上,据我所知,它将questionID与内容的contentID映射)
任何人都知道如何做我想在这里实现的目标吗?
感谢。
更新
Okey,在修改为Pascal之后说,这是新的错误:
javax.servlet.ServletException: org.hibernate.MappingException: Foreign key (FKB65C9692FCD05581:language_content [contentID,languageID])) must have same number of columns as the referenced primary key (secretquestions [QuestionID])
这个错误意味着我必须拥有一个我不想要的秘密项表的复合主键:(
更新
我将举例说明我想做的事情:
Table SecretQuestion
questionID* question answer
1 4 a
2 5 a
3 6 a
Table Content
contentID* languageID* content
1 1 a
1 2 b
2 1 c
2 2 d
3 1 e
3 2 f
4 1 g
4 2 h
5 1 i
5 2 j
6 1 k
6 2 l
现在我想将问题4,5,6映射到内容ID 4,5,6。
答案 0 :(得分:1)
看起来这种方法无法工作且Hibernate不支持(Content表有复合主键,而我想将它映射到Question表中的一个字段),因此我使用了一个解决方法,我只映射了问题到contentID,我使用ContentGetter类,它将获取内容取决于languageID。