차밍이

[Spring-boot] the import javax.persistence cannot be resolved 해결방법 본문

Java/Spring

[Spring-boot] the import javax.persistence cannot be resolved 해결방법

2022. 7. 18. 21:33
반응형

목차


    문제 상황

    MySQL DB와 객체를 연결하려는 작업에서 @Entity annotation이 먹지 않는 문제가 발생했다.

    import javax.persistence.Entity;을 통해서 import를 이미 해주었지만, 해당 import 부분 또한 에러가 발생하는 상황이다.


    해결 방법

    build.gradle에 들어가서 dependencies에 아래 내용을 추가해준다.

    dependencies {
        compile('org.springframework.boot:spring-boot-starter-data-jpa')
        compile('mysql:mysql-connector-java')
    }

    반응형

    관련된 글 보기

    Comments