原配置文件
#key=value
driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/kevin_01?rewriteBatchedStatements=true
#url=jdbc:mysql://localhost:3306/girls
username=root
password=232517
#initial connection Size
initialSize=10
#min idle connecton size
minIdle=5
#max active connection size
maxActive=20
#max wait time (5000 mil seconds)
maxWait=5000
解决办法
在url=jdbc:mysql://localhost:3306/kevin_01?rewriteBatchedStatements=true 后面加 useSSL=true
注意要用&分隔
如:url=jdbc:mysql://localhost:3306/kevin_01?rewriteBatchedStatements=true&useSSL=true