我想在表格的某些列上创建索引。我正在使用Ebean和Play-java。我想知道在列/表上创建索引的正确注释是什么。
有没有人使用JPA注释成功编制索引?
注意:我知道我总是可以手动创建索引而不用担心注释。
答案 0 :(得分:2)
Ebean有@Index。请注意,在6.5.1版中,支持得到了增强 - https://github.com/ebean-orm/avaje-ebeanorm/issues/368
单列示例:
@Entity
@Table(name = "e_basic")
public class EBasic {
...
@Index
String name;
多栏示例:
@Index(columnNames = {"last_name","first_name"})
@Entity
public class Contact {