试图在fedora中使用tomcat部署gwt应用程序和tomcat,但是在登录时它没有连接到数据库。虽然在Windows中使用tomcat也是如此。我们必须在fedora做一些不同的事情吗?问题是只与数据库连接,因为在调用RPC服务时,没有返回任何对象?
答案 0 :(得分:1)
您的JDBC驱动程序是否正常工作?如果没有,则以root身份运行,
yum install mysql-connector-java
还尝试使用简单的java程序进行测试。
import java.sql.*;
public class Connect
{
public static void main (String[] args)
{
Connection conn = null;
try
{
String userName = "testuser";
String password = "testpass";
String url = "jdbc:mysql://localhost/test";
Class.forName ("com.mysql.jdbc.Driver").newInstance ();
conn = DriverManager.getConnection (url, userName, password);
System.out.println ("Database connection established");
}
catch (Exception e)
{
System.err.println ("Cannot connect to database server");
}
finally
{
if (conn != null)
{
try
{
conn.close ();
System.out.println ("Database connection terminated");
}
catch (Exception e) { /* ignore close errors */ }
}
}
}
}