1. 程式人生 > >Spring配置資料庫連線池錯誤(特別注意)

Spring配置資料庫連線池錯誤(特別注意)

之前使用資料連線池配置C3p0出現了 Unknown database 'localhost:3306/chat',仔細發現原來是配置檔案的問題,

jdbc.url=jdbc:mysql:///localhost:3306/chat
jdbc.driverclass=com.mysql.jdbc.Driver
jdbc.username=root
jdbc.password=12345
jdbc.maxPoolSize=5
jdbc.initialPoolSize=4

只需要將紅色部分去掉就可以了。