@Entity
public class Product {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String productName;
private int year;
private Double price;
private String url;
public Product() { }
public Product(String productName, int year, Double price, String url) {
this.productName = productName;
this.year = year;
this.price = price;
this.url = url;
}
}
我的Springboot有问题。即使我添加了@Id,日志也告诉我产品没有任何ID。
2条答案
按热度按时间jgovgodb1#
确保您在存储库接口中添加实体类,例如:
并将实体
private int year
更改为ezykj2lf2#
谢谢,大家帮我这个。我已经修复了这个问题。问题是IJ自动完成错误的导入。在这种情况下,我必须使用
javax.persistence
,但IJ自动完成它到一个org.springframework.data.id