我试图在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