2
我從hibernate 4.2.x遷移到4.3.x,現在不贊成使用@Index註解。我曾經使用休眠4.3索引註釋
@Basic
@Column(length = 2000)
@Index(name = "siteOrigin_idx")
private String siteOrigin;
索引字符串。我只是不知道如何在hibernate 4.3+中啓用索引。
我從hibernate 4.2.x遷移到4.3.x,現在不贊成使用@Index註解。我曾經使用休眠4.3索引註釋
@Basic
@Column(length = 2000)
@Index(name = "siteOrigin_idx")
private String siteOrigin;
索引字符串。我只是不知道如何在hibernate 4.3+中啓用索引。
由於Hibernate 4.3實現了JPA 2.1,現在應該使用JPA 2.1中的@Index
annotation。
好吧,我現在明白了。索引現在只能放在表註釋@Table(indexes = {@Index(...)})非常感謝:) –