- 问题: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……
- 检查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 - 检查JDBC配置文件,连接数据库的username和password是否输入正确
如果忘记密码,可以在data source explorer中查看数据库属性; - 检查WEB-INF --> lib 中是否添加mysql-connector-java-5.1.45-bin.jar包;
- 检查错误提示下的XML文件 是否存在resultType,parameterType,表名的错误
select * from 表名 where x1 = #{x1} and x2= #{x2} ; - 检查数据库的名称 最好是复制名称到JDBC配置文件中,看是否出现转义字符,因为很可能在起名时键盘中英文切换错误;
- 检查端口号localhost:3306
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)