【已解决】### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException:…

【已解决】### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException:…,第1张

【已解决】### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException:…

【已解决】### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException:…
    • 问题:jdbc不连接 500错误
    • 解决办法

问题:jdbc不连接 500错误

org.springframework.jdbc.CannotGetJdbcConnectionException:
Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Could not create connection to database server.)
The error may exist in mappers/AdminDao.xml
The error may involve dao.admin.AdminDao.login
The error occurred while executing a query……

解决办法
  1. 检查JDBC配置文件,是否有隐藏空格
    jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/数据库名?characterEncoding=utf8 jdbc.username=root jdbc.password=root jdbc.maxTotal=30 jdbc.maxIdle=10 jdbc.initialSize=5
  2. 检查JDBC配置文件,连接数据库的username和password是否输入正确
    如果忘记密码,可以在data source explorer中查看数据库属性;
  3. 检查WEB-INF --> lib 中是否添加mysql-connector-java-5.1.45-bin.jar包;
  4. 检查错误提示下的XML文件 是否存在resultType,parameterType,表名的错误
  5. select * from 表名 where x1 = #{x1} and x2= #{x2} ;
  6. 检查数据库的名称 最好是复制名称到JDBC配置文件中,看是否出现转义字符,因为很可能在起名时键盘中英文切换错误;
  7. 检查端口号localhost:3306

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5612126.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存