인프런 커뮤니티 질문&답변

함범준님의 프로필 이미지

작성한 질문수

스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술

스프링 통합 테스트

JPA쪽 강의에서 실행이 안됩니다

작성

·

605

0

첫 줄에 이렇게뜨고요
java.lang.IllegalStateException: Failed to load ApplicationContext
 
크게
Caused by: org.springframework.beans.factory.BeanCreationException: 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]
 
Caused by: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
 
Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
 
이렇게 뜨고 엄청 길게 오류가 떠서 다 적지도못하겠네요..
 
현재 JPA쪽 강의 듣고있습니다. h2데이터베이스 넘어오면서부터 문제가 있는것 같아요..

답변 2

0

김영한님의 프로필 이미지
김영한
지식공유자

안녕하세요. 함범준님

H2 데이터베이스 서버가 실행되어 있지 않은 상태로 보입니다.

H2 데이터베이스 서버를 실행하고 애플리케이션을 구동해주세요.

감사합니다.