Как я могу подключить свое приложение SpringBoot к базе данных MySQL? - PullRequest
0 голосов
/ 08 декабря 2018

Я попытался установить в application.properties URL-адрес, но у меня есть эта ошибка:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Причина: не удалось определить подходящий класс драйвера

spring.datasource.url=jdbc:mysql://localhost:3306/springboot
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
spring.jpa.show-sql=false
spring.flyway.locations=classpath:db/mysql/migration
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...