1. 程式人生 > >mysql連線資料庫報錯Unable to create initial connections of pool.

mysql連線資料庫報錯Unable to create initial connections of pool.

出現Unable to create initial connections of pool. 錯誤的原因是pom檔案配置的mysql版本號的問題

找到並修改POM檔案中的版本號

		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<version>5.1.44</version>
		</dependency>

如上圖所示,把version中的版本號改到5.1.44以上

即可(5.1.44也可以)