简体   繁体   中英

Spring boot problem: the import javax.persistence.Entity cannot be resolved

this is the error:

i add this code:

<dependency>
    <groupId>javax.validation</groupId>
    <artifactId>validation-api</artifactId>
    <version>2.0.1.Final</version>
</dependency>

in pom.xml but this error still

You seem to be importing the wrong dependency. If you would like to use the @Entity annotation import the following dependency:

 <dependency>
    <groupId>javax.persistence</groupId>
    <artifactId>javax.persistence-api</artifactId>
    <version>2.2</version>
 </dependency>

You can instead import the Spring data JPA package:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

Which will allow you to use the @Entity annotation.

Also make sure to update your project when the new dependencies are added.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM