JPA实体添加索引

spring boot版本:2.1.1.RELEASE
示例实体:EntityOrder
新增3个field:

@Column(name="plat",nullable=false,length=4)
private Integer plat;
@Column(name="shop",nullable=false,length=4)
private Integer shop;
@Column
private Date time;

给time单独添加索引
给plat和shop添加组合索引
通过在实体类头部加@Table(indexes= {})实现

@Entity(name="jpa_order")
@Table(name="jpa_order",indexes= {
        @Index(columnList="plat,shop"),
        @Index(columnList="time")
})
public class EntityOrder {
}

执行jpa操作后,进入数据库查看索引已经创建


image.png

来个简单sql查看下索引使用

image.png

你可能感兴趣的:(JPA实体添加索引)