我用eclipse连接数据库,加载好了驱动器,为什么连接数据库会出现异常?
try {
Class.forName("com.mysql.cj.jdbc.Driver");
System.out.println("数据库驱动加载成功");
java.sql.Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306", "root", "123456");
if(con!=null){
System.out.println("连接数据库成功");
}
} catch (ClassNotFoundException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
} catch (SQLException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
大咪