【坑】使用db.properties後不能正常鏈接mysql

使用使用db.properties配置後mysql

出錯代碼sql

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:jdbc:mysql://localhost:3306/mbtest       //不明白當是什麼前頭寫兩個jdbc,粗枝大葉url

jdbc.username=root
jdbc.password=1234spa

報錯提示code

大體意思是utf-8

SQLException異常:沒有合適的驅動發現爲jdbc:jdbc:mysql:/ / localhost:3306 / mbtio

糾正代碼test

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url= jdbc:mysql://localhost/mbtest?useUnicode=true&characterEncoding=utf-8
jdbc.username=root
jdbc.password=1234配置

暫時_解決總結:jdbc.url 格式不正確coding

相關文章
相關標籤/搜索