티스토리 뷰
SW개발/Spring Framework
org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
개소왕 2019. 6. 29. 14:44* 개요
Spring Boot PRJ 를 WAR 로 배포했는데 오류 발생
로그에 다음과 같은 내용 보임
org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
* 환경
MariaDB
JAVA 8
Spring 5
* 해결
aplication.properties 파일에 다음 코드 추가
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQLDialect
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQLDialect