如何在将Springboot与MySql连接时修复连接问题

时间:2019-01-30 08:19:57

标签: mysql spring-boot

我的应用程序正确编译,没有错误,但是由于未在数据库中创建表而存在一些连接问题

我在Spring Boot框架中创建了一个实体模型,并使用application.properties文件与数据库连接

我启动了应用程序,但数据库未连接

spring.datasource.url = jdbc:mysql://localhost:3306/users?useSSL=false
spring.datasource.username = root
spring.datasource.password = password
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect

spring.jpa.hibernate.ddl-auto = update

1 个答案:

答案 0 :(得分:0)

将此添加到您的application.properties

spring.datasource.driver = com.mysql.jdbc.Driver