본문 바로가기
Programming 개발은 구글로/Web[프론트엔드&백엔드]

please set 'javax.persistence.jdbc.url', 'hibernate.connection.url', or 'hibernate.dialect' 오류 수정

by 40대직장인 2023. 9. 13.

🟦 please set 'javax.persistence.jdbc.url', 'hibernate.connection.url', or 'hibernate.dialect' 오류 수정

 

Sping Boot 컨테이너에서 MySQL Dialect 설정을 찾지 못하면 아래와 같은 오류가 발생이 됩니다.

Unable to determine Dialect without JDBC metadata (please set 'javax.persistence.jdbc.url', 'hibernate.connection.url', or 'hibernate.dialect')

 

해결 방법은 간단합니다.

 

application.properties에 아래의 코드를 추가하면 됩니다.

 

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

 

 

 

댓글