您的当前位置:首页正文

Connections could not be acquired from the underlying database问题解决

2024-11-20 来源:个人技术集锦

SSM项目整合时遇到这个问题,db.properties的内容如下:

driverName=com.mysql.jdbc.Driver
url=jdbc\:mysql\://localhost\:3306/mybatis01
username=root
password=123
改成:

jdbc.driverName=com.mysql.jdbc.Driver
jdbc.url=jdbc\:mysql\://localhost\:3306/mybatis01
jdbc.username=root
jdbc.password=123


以后,养成好习惯,配置文件中的属性名要保持唯一性。


显示全文