spring data jpa 可以使用注解创建表索引,具体使用方法如下:
@Data @Entity @Table(name = "pre_lcas_syslog" , indexes = {@Index(name = "index_timestamp", columnList = "timestamp")}) public class Xxx extends BaseEntity implements Serializable { private String xxx;
private String timestamp; }
上面的代码能够成功创建索引,但是,如果指定索引名称为“i_timestamp”,程序启动时,控制台打印已经成功创建索引,但是数据库查看,是没有对应索引的;
暂时不知道为什么,有可能是与pg数据库内部命名方法冲突了,只记下这个现象,后续分析;