JDBC连接Mysql报错.... WARN: Establishing SSL connection without server‘s identit....
2022/2/10 2:16:15
本文主要是介绍JDBC连接Mysql报错.... WARN: Establishing SSL connection without server‘s identit....,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
错误原因
没有服务器的身份验证建立SSL连接
解决
在jdbc.properties配置文件中将url的内容改成:
url=“jdbc:mysql://localhost:3306/db3?useUnicode=true&characterEncoding=UTF-8&useSSL=false”
如果报错Exception in thread “main” com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException
如果数据库本身连接没问题,那就是mysql为8.0版本,而驱动包是5.1版本,将驱动包改成8.0以后的版本即可。
注意
jdbc 连接 mysql 8.0.11 的 jdbc.properties 配置
driver=com.mysql.cj.jdbc.Driver
jdbc测试连接mysql
import com.mysql.cj.jdbc.Driver; import java.sql.Connection; import java.sql.SQLException; import java.sql.Statement; import java.util.Properties; public class jdbc01 { //完成简单的操作 public static void main(String[] args) throws SQLException { //1.注册驱动 Driver driver = new Driver();//创建driver对象 //2.得到连接 String url="jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false";//连接到哪个数据库 //指定用户名和密码,将用户名和密码放到Properties对象 Properties properties = new Properties(); properties.setProperty("user","root"); properties.setProperty("password","110520"); //获取连接 Connection connect = driver.connect(url, properties); //3.执行操作 String sql = "insert into actor values(NULL,'鲁迅','男','1941-03-14','11111')"; Statement statement = connect.createStatement();//发送sql语句并执行 int rows = statement.executeUpdate(sql);//如果是dml语句,返回的就是受影响的行数 System.out.println(rows>0?"成功":"失败"); //4.关闭连接 statement.close(); connect.close(); } }
这篇关于JDBC连接Mysql报错.... WARN: Establishing SSL connection without server‘s identit....的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-16MySQL资料:新手入门教程
- 2024-11-15MySQL教程:初学者必备的MySQL数据库入门指南
- 2024-11-15MySQL教程:初学者必看的MySQL入门指南
- 2024-11-04部署MySQL集群项目实战:新手入门教程
- 2024-11-04如何部署MySQL集群资料:新手入门指南
- 2024-11-02MySQL集群项目实战:新手入门指南
- 2024-11-02初学者指南:部署MySQL集群资料
- 2024-11-01部署MySQL集群教程:新手入门指南
- 2024-11-01如何部署MySQL集群:新手入门教程