我的应用程序正确编译,没有错误,但是由于未在数据库中创建表而存在一些连接问题
我在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
答案 0 :(得分:0)
将此添加到您的application.properties
spring.datasource.driver = com.mysql.jdbc.Driver