Hibernate 在多列上设置索引,而其中一列是 ID
Posted
技术标签:
【中文标题】Hibernate 在多列上设置索引,而其中一列是 ID【英文标题】:Hibernate set index on multiple columns while one of the columns is the ID 【发布时间】:2013-07-09 13:25:30 【问题描述】:是否可以设置多列的索引,而其中一列是主键
【问题讨论】:
【参考方案1】:查看这篇文章(谷歌搜索java hibernate jpa index):
JPA: defining an index column
Specifying an Index (Non-Unique Key) Using JPA
http://www.objectdb.com/java/jpa/entity/index
然后看到(google了java hibernate jpa index composition):
How to define index by several columns in hibernate entity?
【讨论】:
我知道主键已经是索引了。我的问题是我是否可以放置一个包含两列或多列的新索引,而其中一列是主键? @johnSmith:我不确定你是否通读了它们。最后一个链接显示了如何定义多列索引。它不关心其中一个是否是主键。你可以使用它。【参考方案2】:你可以这样做:
<id name="id" type="NumericInteger">
<column name="ID" index="INDEX01"/>
</id>
The key is to remove column="ID" as property of Node <id> and place it as <column> definition instead
【讨论】:
以上是关于Hibernate 在多列上设置索引,而其中一列是 ID的主要内容,如果未能解决你的问题,请参考以下文章