引入
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
实体类
//tb_product是数据库类名
@Entity
@Table(name="tb_product")
public class Product {
@Id
private Long id;
private String productName;
private Integer status;
private BigDecimal price;
private String productDesc;
private String caption;
private Integer inventory;
}
遇到的坑
数据库属性名必须是_式的
实体类的属性名必须是驼峰式
我不知道为什么,我只知道我数据库按驼峰式写的,报错,改成_式就好了。