Unknown Entity 오류
https://discuss.gradle.org/t/jpa-entity-classes-are-not-discovered-automatically-with-gradle/11339/5 문서를 보시면, 빌드 후 META-INF/persistence.xml 위치가 빌드 후 생성되는 디렉토리 path중 package 최상 directory와 동등한 위치에 존재해야 entity annotation을 자동으로 인식한다고 되어 있네요. 예를 들어 내 패키지 이름이 org.example.jpa 이고, 빌드 후 구조가out/production/classes/org/example/jpa 와 같은 구조로 되어있다면 package의 최상위 directory는 org 이므로 out/production/classes/META-INF/persistence.xml 와 같이 위치하도록 build.gradle 설정을 변경해주시면 됩니다. 즉, 리소스가 빌드되어 저장되는 위치를 바꾸면 됩니다. 만약 Intellij -> preference에서 Build, Execution, Deployment -> Gradle 의 Build and run 항목을 Intellij 로 해두셨다면 기본 설정에 위와 같은 에러가 났을 것으로 보입니다. 기본 설정이 META-INF/persistence.xml 파일은 위 설정에서 빌드 시 out/production/resources 디렉토리 아래로 들어가기 때문인 것으로 보여요.이를 해결하기 위해서는 빌드 시 소스 디렉토리 구조에서 resources 아래 파일을 classes 아래 들어가도록 gradle 설정을 해주어야 합니다. Intellij -> preference에서 Build, Execution, Deployment -> Gradle 의 Build and run 항목을 gradle로 변경한 다음 build.gradle 에 다음과 같이 입력해주면 됩니다.ourceSets { main { output.resourcesDir = java.outputDir } } 만약 gradle을 Intellij로 빌드하더라고 똑같은 효과를 얻고 싶으시면 Intellij로 gradle build 시, 어떻게 하면 resources 내의 파일 위치를 빌드 후, 위와 같이 위치시킬 것인가 찾아보시면 될것 같아요. (build.gradle 설정으로 가능한 것으로 알고 있습니다.)