博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C3P0 WARN: Establishing SSL connection without server's identity verification is not recommended
阅读量:4949 次
发布时间:2019-06-11

本文共 750 字,大约阅读时间需要 2 分钟。

c3p0的出现,是为了大大提高应用程序和数据库之间访问效率的。

  它的特性:

  1. 编码的简单易用
  2. 连接的复用
  3. 连接的管理

 

今天在配置C3p0的时候出现了这个warn   原因是因为要验证SSL 

Wed Sep 13 00:03:35 CST 2017 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.

从提示中可以看到需要将useSSL 设置为false  就可以解决这个问题

 

可以 看到在Url  之后 加入 useSSL = false  就没有这个warning  出现了

 

转载于:https://www.cnblogs.com/mythdoraemon/p/7512976.html

你可能感兴趣的文章
【2018.5.19】模拟赛之二-ssl2433 文件名排序【字符串】
查看>>
[RxJS] Filtering operator: single, race
查看>>
13、通过Docker-compose快速搭建Wordpress
查看>>
C# 循环读取Excel
查看>>
验证码的存在毫无意义——论人机识别的可行性
查看>>
SpringMVC自动封装List对象 —— 自定义参数解析器
查看>>
IOS架构
查看>>
C#编程-读写文本
查看>>
python_循环删除list中的元素,有坑啊!
查看>>
BZOJ1468: Tree
查看>>
封装读取文件路径的类File.h+File.m
查看>>
Java多线程和并发(八),synchronized底层原理
查看>>
Ionic进行PC端Web开发时通过脚本压缩提高第一次加载效率
查看>>
在Spark程序中使用压缩
查看>>
查询物料PAC单位成本
查看>>
Python基础18(time模块)
查看>>
win10 右键发送到 目录
查看>>
最大流
查看>>
如何删除github上项目的文件
查看>>
scikit-learn 学习笔记-- Generalized Linear Models (二)
查看>>