IT 문제해결

Error creating bean with name 'entityManagerFactory' defined in class path resource : Invocation of init method failed

클레인 2019. 1. 8.
반응형

스프링부트 rest api 서비스를 구현하다가 구동을 해보니

Error creating bean with name 'entityManagerFactory' defined in class path resource : Invocation of init method failed 메시지가 발생하였다.


'entityManagerFactory' defined 문제는 대부분 application.properties (application.yml) 내의 DB 정보 설정이 잘못 되었기 때문에 entity 생성과정에서 나타나는 오류이다.


필자의 경우 database source url 의 끝부분에 ? encoding 설정 부분이 잘못되어 이를 제거한 후 서버를 돌리니 정상적으로 구동하였다.

반응형

댓글