今天练习springboot项目搭建,jpa,但是启动一直报错。
No identifier specified for entity:。
经过查找发现是因为@Id注解import错包了。
错误:
import org.springframework.data.annotation.Id;
正确:
import javax.persistence.*;
今天练习springboot项目搭建,jpa,但是启动一直报错。
经过查找发现是因为@Id注解import错包了。
错误:
import org.springframework.data.annotation.Id;
正确:
import javax.persistence.*;