部署 GWT 项目时出现的问题
尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 JDBC 驱动程序工作正常吗?如果没有,则以 root 身份运行,
yum install mysql-connector-java
还尝试使用简单的 java 程序进行测试。
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.