Spring Boot에서 데이터베이스 스키마 자동 생성 실패
애플리케이션이 시작 시 데이터베이스 스키마를 자동으로 생성할 수 없으므로 추가 조사가 필요합니다.
잠재적 원인:
<code class="properties">spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect spring.jpa.hibernate.ddl-auto=update spring.datasource.driverClassName=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/test spring.datasource.username=test spring.datasource.password=</code>
참고: 드라이버 클래스는 자동으로 등록되므로 수동으로 지정할 필요가 없습니다.
위 내용은 내 Spring Boot 애플리케이션이 데이터베이스 스키마를 자동으로 생성하지 못하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!