- Druid报错 com.alibaba.druid.support.logging.JakartaCommonsLoggingImpl error
- 1.查看数据库的驱动是否对应
- 2.MySQL的driverClassName版本不一样写的方式也不一样
- 5.7以下的com.mysql.jdbc.Driver
- 5.7以上的com.mysql.cj.jdbc.Driver
- 3.查看url是否写错
- jdbc:mysql://localhost:3306/数据库的名字?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF-8&useSSL=false
- errorCode 1045, state 28000错误
- 在Spring配置数据源时,当使用Spring容器加载druid.properties数据库连接池配置文件时,容易碰到这个问题
- druid.properties配置文件中的key,例如username,使用了spring,配置文件中的username不能叫username,spring会默认username是你的计算机名
- 在key前加上jdbc.即可
- Invalid bound statement (not found)
- 在常见数据库异常中这算是比较简单的一类了,细致一点就能很好的避免此类问题
- 1.检查Mapper.xml中的方法名和Dao类方法是否一致,若使用注解则检查SQL语句是否存在
- 2.检查Mapper.xml文件中的namespace是否是正确的Dao类全限定名
- 3.检查Mapper.xml文件中方法返回值和Dao类的方法返回值是否一致,ResultMap要注意type是否正确,ResultType要注意是返回结果的一条记录的类型
- 4.检查Mapper.xml在配置文件或者配置类中的路径是否正确
|