**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
昨天关门了。
Improve this question
public static Connection connection() {
Connection connection = null;
try {
Class.forName("com.mysql.jdbc.Driver");
connection = DriverManager.getConnection(url: "jdbc:mysql://localhost:8081/tarantino_theatre",user: "admin", password:"password");
} catch (ClassNotFoundException classException){
classException.printStackTrace();
} catch(SQLException sqlException) {
sqlException.printStackTrace();
}
return connection;
}
我已经弄乱了我的服务器设置,一切都相应地匹配。
1条答案
按热度按时间pxq42qpu1#
这不是java语法:
试试这个:
但这一变化并不能解释你的500个错误。这样写的话根本不会启动。你确定你正在运行一个全新的编译吗?