0

是否可以设置多列的索引,而列之一是主键

4

2 回答 2

0

看到这篇文章(谷歌搜索java hibernate jpa 索引):

JPA:定义索引列

使用 JPA 指定索引(非唯一键)

http://www.objectdb.com/java/jpa/entity/index

然后看到(谷歌搜索java hibernate jpa index composition):

如何通过休眠实体中的几列定义索引?

于 2013-07-09T13:29:16.557 回答
0

你可以这样做:

<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
于 2019-02-21T13:49:42.883 回答