部署 GWT 项目时出现的问题

发布于 2024-11-06 21:07:55 字数 151 浏览 1 评论 0原文

尝试在 Fedora 中通过 Tomcat 部署带有 RPC 服务的 gwt 应用程序,但登录时无法连接到数据库。尽管在 Windows 中通过 Tomcat 也可以正常工作。我们必须在 Fedora 中做一些不同的事情吗?问题仅在于与数据库的连接,因为调用 RPC 服务时没有返回对象?

trying to deploy gwt application with RPC service over tomcat in fedora, but its not connecting to the database while logging in. Although the same is working over tomcat in windows. Do we have to do something different in fedora? Problem is only with connection with the database, as while calling RPC service, no object is returned?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那一片橙海, 2024-11-13 21:07:55

您的 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 */ }
            }
        }
    }
}

Is your JDBC driver working properly ? If not then run as root,

yum install mysql-connector-java

Also try testing with a simple java program.

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 */ }
            }
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文