链接Mysql数据库:java.sql.SQLException: Unknown system variable 'query_cache_size'

Mysql安装在服务器中,在java中链接,出现mysql版本问题和ssL问题

服务器中安装的mysql是最新版,应该是mysql8.0

  1. 但是在5.7中可以使用的一些类和数据库驱动,在mysql8.0中就不能使用,或者被丢弃了。
    java.sql.SQLException: Unknown system variable 'query_cache_size'这个异常的解决方法:
    在pom.xml中更换一下mysql链接版本即可
        <dependency>
            <groupId>mysqlgroupId>
            <artifactId>mysql-connector-javaartifactId>
			<version>8.0.11version>
        dependency>
  1. 更换了版本,又提示:com.mysql.jdbc.Driver不能使用

发现mysql8.0的jar中,已经丢弃这个链接驱动,虽然还能用,但是会提示你,这个驱动被丢弃了,解决方法:更换驱动链接即可:
com.mysql.cj.jdbc.Driver

可以在mysql8.0的jar里面看到,已经使用最新的驱动:
链接Mysql数据库:java.sql.SQLException: Unknown system variable 'query_cache_size'_第1张图片

  1. 更换了驱动,链接的使用提示:
    You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true

    看起来好像又是mysql8.0的问题,需要设置不使用ssL,
    所以为了方便链接,直接取消使用ssL,最后下面的链接:
    jdbc:mysql://132.xxx.xxx.247:3306/wx_migutou_video?useSSL=false
    在后面加上参数:userSSL=false即可

你可能感兴趣的:(数据库)