Spring Boot와 MySQL 연동 오류

김지원·2024년 1월 16일
1

Spring Boot와 MySQL연동 시 발생한 오류

Caused by: org.hibernate.HibernateException: Unable to determine Dialect without JDBC metadata (please set 'jakarta.persistence.jdbc.url' for common cases or 'hibernate.dialect' when a custom Dialect implementation must be provided)

원인 - Spring Boot 컨테이너가 MySQL Dialect 설정을 못 찾았기 때문

해결 - application.properties에 코드 추가

spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQLDialect

0개의 댓글