java - jdbc無法連接postgresql數(shù)據(jù)庫(kù)
問題描述
使用jdbc連接postgresql數(shù)據(jù)庫(kù)時(shí)報(bào)錯(cuò)如下:
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)
關(guān)鍵的報(bào)錯(cuò)信息: Cannot create PoolableConnectionFactory (????????: ?????? 'uav_test ' ??????)
連接的參數(shù)如下:
#Postgresql driver=org.postgresql.Driverurl=jdbc:postgresql://localhost:5432/uav_test username=postgrespassword=rootdialect=postgresql
當(dāng)我把postgresql數(shù)據(jù)庫(kù)改為使用mysql時(shí)就沒有問題,mysql時(shí)的參數(shù):
driver=com.mysql.jdbc.Driverurl=jdbc:mysql://localhost:3306/mysqlusername=rootpassword=rootdialect=mysql
不太明白為什么會(huì)出現(xiàn)此種情況
問題解答
回答1:填坑來了;搞了半天,原來是誤把uav_test這個(gè)連接名當(dāng)成了數(shù)據(jù)庫(kù)名,而且真實(shí)的報(bào)錯(cuò)信息是這樣的: 致命錯(cuò)誤: 數(shù)據(jù)庫(kù) 'uav_test' 不存在,可能是因?yàn)榫幋a格式問題,顯示不了中文,導(dǎo)致尋找錯(cuò)誤無從下手。
菜鳥才會(huì)犯得錯(cuò)啊
回答2:應(yīng)該是sql語句寫錯(cuò)了吧,
相關(guān)文章:
1. thinkPHP5中獲取數(shù)據(jù)庫(kù)數(shù)據(jù)后默認(rèn)選中下拉框的值,傳遞到后臺(tái)消失不見。有圖有代碼,希望有人幫忙2. python小白 關(guān)于類里面的方法獲取變量失敗的問題3. Python2中code.co_kwonlyargcount的等效寫法4. python小白,關(guān)于函數(shù)問題5. 求救一下,用新版的phpstudy,數(shù)據(jù)庫(kù)過段時(shí)間會(huì)消失是什么情況?6. javascript - 如何用最快的速度C#或Python開發(fā)一個(gè)桌面應(yīng)用程序來訪問我的網(wǎng)站?7. mysql數(shù)據(jù)庫(kù)做關(guān)聯(lián)一般用id還是用戶名8. linux運(yùn)維 - python遠(yuǎn)程控制windows如何實(shí)現(xiàn)9. python - 如何對(duì)列表中的列表進(jìn)行頻率統(tǒng)計(jì)?10. django - Python error: [Errno 99] Cannot assign requested address
