Error creating bean with name 'entityManagerFactory' defined in class path resource

박영준·2023년 6월 26일
0

Troubleshooting

목록 보기
11/29

1. 발생한 에러 메시지

Error creating bean with name 'entityManagerFactory' defined in class path resource

2. 발생 원인

Open-jdk에서 javassist가 포함되지 않아 문제가 발생하는 것이다.
따라서, javaassist 가 필요했다.

3. 해결법

내가 사용한 것은 Gradle 이므로, 아래의 코드를 build.gradle 에 추가해준다.

implementation group: 'org.javassist', name: 'javassist', version: '3.15.0-GA'

참고: [SPRING] Error entityManagerFactory 해결

profile
개발자로 거듭나기!

0개의 댓글