java 不断收到内部服务器错误500(在NetBeans上运行Tomcat 9.0)[已关闭]

iyfjxgzm  于 2023-05-05  发布在  Java
关注(0)|答案(1)|浏览(166)

**关闭。**此题需要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;
    }

我已经弄乱了我的服务器设置,一切都相应地匹配。

pxq42qpu

pxq42qpu1#

这不是java语法:

connection = DriverManager.getConnection(url: "jdbc:mysql://localhost:8081/tarantino_theatre",user: "admin", password:"password");

试试这个:

connection = DriverManager.getConnection("jdbc:mysql://localhost:8081/tarantino_theatre", "admin", "password");

但这一变化并不能解释你的500个错误。这样写的话根本不会启动。你确定你正在运行一个全新的编译吗?

相关问题