Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Nenhum driver adequado encontrado para conexão

Coloquei o mesmo código de conexão com o banco de dados e importer via build path o JAR mysql-connector-java-8.0.17.jar:

public static void main(String[] args) throws SQLException {

        Connection connection = DriverManager.
                getConnection("dbc:mysql://localhost/loja_virtual?useTimezone=true&serverTimezone=UTC", "root", "root");

        connection.close();

    }

Contudo obtenho o seguinte erro:

Exception in thread "main" java.sql.SQLException: No suitable driver found for dbc:mysql://localhost/loja_virtual?useTimezone=true&serverTimezone=UTC
    at java.sql.DriverManager.getConnection(DriverManager.java:689)
    at java.sql.DriverManager.getConnection(DriverManager.java:247)
    at TestaConexao.main(TestaConexao.java:13)

Alguém poderia me ajudar?

1 resposta
solução!

Já achei o problema, era a string de conexão que deveria ser "jdbc:mysql://localhost/loja_virtual?useTimezone=true&serverTimezone=UTC", "root", "root"". Contudo para retirar aquele Warning

Sat May 15 14:24:29 BRT 2021 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.

Adicionei a minha string de conexão o seguinte trecho:

autoReconnect=true&useSSL=false.