Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »


증상

JPA 에서 MySQL 사용중인데 스키미가 MyISAM 으로 생성되고 있음


원인

설정 파일에 Dialect 가 다음과 같이 설정되어 있음

spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect

원인

Dialect 를 MySQLInnoDBDialect 로 변경

spring.jpa.database-platform=org.hibernate.dialect.MySQLInnoDBDialect

Ref

  • No labels