运行项目出现警告信息Establishing SSL connection without server‘s identity verification is not recommende

运行项目出现警告信息Establishing SSL connection without server’s identity verification is not recommende

在连接url地址后加上如下参数即可:

useSSL=false

例如原本的链接:

jdbc:mysql://localhost:3306/blog?characterEncoding=UTF8

加上之后:

jdbc:mysql://localhost:3306/blog?characterEncoding=UTF8&useSSL=false

OK!问题解决!不会的给我私信!
觉得有帮助的可以关注一波!经常分享编程踩坑经验!

你可能感兴趣的:(Java,java,mysql,spring,mybatis,spring,boot)