java - jdbc无法连接postgresql数据库
问题描述
使用jdbc连接postgresql数据库时报错如下:
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (????????: ?????? 'uav_test ' ??????)### The error may exist in file [G:UavNewMavenDemotargetclassesmapperUserMapper.xml]### The error may involve UserMapper.getUserInfo### The error occurred while executing a query### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (????????: ?????? 'uav_test ' ??????) at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:79) at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:447) at com.sun.proxy.$Proxy27.selectList(Unknown Source)
关键的报错信息: Cannot create PoolableConnectionFactory (????????: ?????? 'uav_test ' ??????)
连接的参数如下:
#Postgresql driver=org.postgresql.Driverurl=jdbc:postgresql://localhost:5432/uav_test username=postgrespassword=rootdialect=postgresql
当我把postgresql数据库改为使用mysql时就没有问题,mysql时的参数:
driver=com.mysql.jdbc.Driverurl=jdbc:mysql://localhost:3306/mysqlusername=rootpassword=rootdialect=mysql
不太明白为什么会出现此种情况
问题解答
回答1:填坑来了;搞了半天,原来是误把uav_test这个连接名当成了数据库名,而且真实的报错信息是这样的: 致命错误: 数据库 'uav_test' 不存在,可能是因为编码格式问题,显示不了中文,导致寻找错误无从下手。
菜鸟才会犯得错啊
回答2:应该是sql语句写错了吧,
相关文章:
1. javascript - 移动端 点击弹出遮罩层 加断点调试就行 不加断点就不行2. 关于docker下的nginx压力测试3. docker images显示的镜像过多,狗眼被亮瞎了,怎么办?4. dockerfile - 为什么docker容器启动不了?5. debian - docker依赖的aufs-tools源码哪里可以找到啊?6. angular.js使用$resource服务把数据存入mongodb的问题。7. docker容器呢SSH为什么连不通呢?8. javascript - 正则匹配字符串特定语句后的数字9. dockerfile - [docker build image失败- npm install]10. docker绑定了nginx端口 外部访问不到

网公网安备