A brief analysis of the problem of Mysql 8.0 version driving getTables to return all database tables

A brief analysis of the problem of Mysql 8.0 version driving getTables to return all database tables

Preface

This article mainly introduces the relevant content about the Mysql8.0 driver getTables returning all the tables in the library. The MySQL Connector/J 8.0 version driver is backward compatible with the previous 5.5+ version of MySQL. If you are using 5.5+ version of MySQL, you can upgrade to the 8.0 version driver.

If you are using the 5.X version of the driver, you need to change the Driver Class to: com.mysql.cj.jdbc.Driver

It should be noted that:

The parameters related to the driver DataSource in version 8.0 have changed:

For example, the 8.0 version driver changes the default value of the parameter nullCatalogMeansCurrent from true to false. If you use DatabaseMetaData.getTables to get all table information, the 8.0 version driver will return all database tables.

// By default, all database tables are returned, not just the database specified by datasource databaseMetaData.getTables(null, null, null, new String[]{"TABLE"})

The solution is to change this parameter to true when the connection pool is initialized. Take HikariCP as an example:

Java Config:

HikariConfig config = new HikariConfig();
...
config.addDataSourceProperty("nullCatalogMeansCurrent", true);

Spring Boot Configuration:

spring.datasource.hikari.data-source-properties.nullCatalogMeansCurrent=true

For other parameter changes, please refer to [official documentation]

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • Brief analysis of the various versions of mysql.data.dll driver
  • Detailed explanation of the problems encountered when using the Mysql8.0 version driver in Mybatis reverse engineering

<<:  Detailed explanation of samba + OPENldap to build a file sharing server

>>:  Vue.set() and this.$set() usage and difference

Recommend

Detailed explanation of MySql view trigger stored procedure

view: When a temporary table is used repeatedly, ...

Vue custom components use event modifiers to step on the pit record

Preface Today, when I was using a self-written co...

Docker custom network container interconnection

Table of contents Preface –link Custom Network As...

ftp remotely connect to Linux via SSH

First install ssh in Linux, taking centos as an e...

Linux system to view CPU, machine model, memory and other information

During system maintenance, you may need to check ...

Implementation of Nginx forwarding matching rules

1. Regular expression matching ~ for case-sensiti...

3 ways to create JavaScript objects

Table of contents 1. Object literals 2. The new k...

An example of using Lvs+Nginx cluster to build a high-concurrency architecture

Table of contents 1. Lvs Introduction 2. Lvs load...

Centos8 builds nfs based on kdc encryption

Table of contents Configuration nfs server (nfs.s...

How to compile the Linux kernel

1. Download the required kernel version 2. Upload...

Implementation of setting fixed IP when starting docker container

Network type after docker installation [root@insu...

Detailed explanation of custom configuration of docker official mysql image

In order to save installation time, I used the of...

Centos builds chrony time synchronization server process diagram

My environment: 3 centos7.5 1804 master 192.168.1...