zoukankan      html  css  js  c++  java
  • 项目启动时警告 Establishing SSL connection without server's identity verification is not recommended

    项目启动时控制台提示警告:

    Tue May 14 23:16:10 CST 2019 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.

    原因及解决方法提示的很清楚:MySQL在高版本需要指明是否进行SSL(保障Internet数据传输安全利用数据加密)

    在数据库URL的配置后面增加一条

    spring.datasource.druid.url = jdbc:mysql://127.0.0.1:3319/demo?useUnicode=true&characterEncoding=utf-8&useSSL=false

    另外需要注意的是,如果数据库配置是配置在XML文件中的,那么URL中的 & 符需要进行转义

    <jdbcConnection driverClass="com.mysql.jdbc.Driver"
                    connectionURL="jdbc:mysql://127.0.0.1:3319/demo?characterEncoding=utf8&amp;useSSL=false" 
    userId
    ="hello"
    password
    ="hello@123"> </jdbcConnection>
  • 相关阅读:
    全网最贴心webpack系列教程和配套代码
    webpack4 系列教程(十五):开发模式与webpack-dev-server
    CSS元素显示模式
    CSS符合选择器
    Emmet语法
    CSS引入方式
    CSS文本属性
    CSS字体属性
    CSS语法规范一
    案例
  • 原文地址:https://www.cnblogs.com/zjfjava/p/10865419.html
Copyright © 2011-2022 走看看