반응형
Spring Boot, Kotlin, JPA, H2를 이용해서 API 테스트코드를 작성중이었다.
Error creating bean with name 'entityManagerFactory' defined in class path resource
Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
이렇게 에러가 났다...!!
찾아보니 application.yml에서 H2 url에 오타가 있었다...머쓱😅
H2연결할때 JDBC URL에 입력한 url을 application.yml에 올바르게 입력해주니 H2연결이 잘 되었고, 오류가 해결되었다!
같은 문제를 겪었다면 H2연결이 잘되었는지 확인해보자😁
반응형