JPA와 h2 연동 중에 Error creating bean with name 'entityManagerFactory' ~ 발생
JPA와 h2 연동 중에 Error creating bean with name 'entityManagerFactory' ~ 발생
원인
- jdbc 관련 dependency의 부재
해결
- pom.xml에 dependency 추가
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.