存在しない場合にデータベースを作成する場合は、以下のデータベース構成ファイルを使用できます。
jdbc:mysql://localhost:3306/dbname?createDatabaseIfNotExist=true
それ以外の場合は、アプリケーションのプロパティファイルに以下のプロパティがあることを確認してください。
spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.hibernate.ddl-auto=update
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/dbname
spring.datasource.username=username
spring.datasource.password=password