springboot-jpa报错No identifier specified for entity:

今天练习springboot项目搭建,建完实体类也加了jpa注解,但是启动一直报错。

No identifier specified for entity:。

百度解决方案全是@Id和@GeneratedValue注解不要加在setId()方法上,要加在get方法上,试了还是未解决。

终于看到这篇文章,http://blog.csdn.net/qq_33240946/article/details/52916532。

原来是@Id注解import错包了。

错误:

import org.springframework.data.annotation.Id;
正确:

import javax.persistence.*;


你可能感兴趣的:(java)