提示的问题
不建议在没有服务器身份验证的情况下建立SSL连接
Establishing SSL connection without server's identity verification is not recommen is not recommen
问题原因:
Mysql5.5之后的版本对安全性的要求更高,mysql更高版本默认采用的是SSL连接,而驱动在连接时并没有相关配置
解决方法:
现在并无安全性要求,所以在连接的URL后面加上useSSL=false显式声明即可
例如:
jdbc:mysql://localhost:3306/demo?useSSL=false