본문 바로가기
언어/spring

[Spring boot] application properties 오류

by 김뱅쓰 2023. 1. 20.

application.yml 작성

spring:
  h2:
    console:
      enabled: true
  jpa:
    generate-ddl: true
    hibernate:
      ddl-auto: create-drop
    database: h2
    show-sql: true
    open-in-view: false
    properties:
      hibernate:
        dialect: org.hibernate.dialect.MySQL5InnoDBDialect
        query.in_clause_parameter_padding: true

오류

Unable to resolve name [org.hibernate.dialect.MySQL5InnoDBDialect] as strategy [org.hibernate.dialect.Dialect]

Unable to load class [org.hibernate.dialect.MySQL5InnoDBDialect]Could not load requested class : org.hibernate.dialect.MySQL5InnoDBDialect

 

 

계속해서 MySQL5InnoDBDialect 이부분이 잘못되었음을 느끼고 구글링

스프링부트 버전이 업그레이드가 되면서 기존에 사용중이던 MySQL5InnoDBDialect 이 Deprecated(더 이상 사용되지 않는)가 된것

 

해결방안 

properties.hibernate.dialect 부분에

org.hibernate.dialect.MySQL5InnoDBDialect부분을

org.hibernate.dialect.MySQL57Dialect으로 변경

 

해결!

 

구글링은 대다내,,,,><