我的应用程序在 tomcat 6 中使用此连接变量运行良好
Class.forName("com.mysql.jdbc.Driver");
conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/Travel","root","root");
我已经尝试了很多地方来解决这个问题,但我找不到解决方案。但是在 tomcat 7 中,当我尝试使用连接变量时,它会返回Null pointer Exception
. 有没有办法在连接文件中更改它?