无法确定合适的驱动程序类别

无法确定合适的驱动程序类别

本文介绍了无法确定合适的驱动程序类别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

启动应用程序时,看到以下错误:

when starting application, seeing below error:

推荐答案

与sql数据库的连接,必须在application.properties中配置数据源

the connection with a sql database, you must configure datasource in application.properties

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://..
spring.datasource.username=//..
spring.datasource.password=//..

这篇关于无法确定合适的驱动程序类别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 11:55