Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

AULA 1 - JDBC NÃO CONSIGO FAZER A CONEXAO

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;

public class TestaConexao {

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


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

        System.out.println("Fechando Conexao!");


        connection.close();
    }

}
Aparece essa msn ao tentar fazer o Run As.

Several ports (8005, 8080) required by Tomcat v9.0 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port. To start this server you will need to stop the other process or change the port number(s).
2 respostas

Consegui, eu estava com a IDE MySql Workbench aberta por isso não conseguia..

solução!

Perfeito, Marcello.

O erro era por conta de alguma outra aplicação estar usando as portas 8005 e/ou 8080 do seu computador