苹果 jdbc 网络服务器

发布于 2024-07-30 11:29:35 字数 302 浏览 1 评论 0原文

我是 CIT 的理学学士学生。 我有一个项目,我想在某种主机/客户端中使用 Java 小程序和 JDBC。

我的小程序在 localhost 上正常工作,但是当我将其部署到 apache Web 服务器上时,我失去了 JDBC 连接。

问题:

  1. JSBC 是否可以使用小程序?
  2. 如果是的话怎么办?
  3. 有没有可以部署applet并且支持jdbc连接的Web服务器?

我的系统:Fedora 8、NetBeans 6.5、XAMPP、MySQL。

I'm a BSc student in CIT. I have a project in which I want to use a Java applet and JDBC in a sort of host/client.

My applet is working properly on localhost, but when I deploy it on apache webserver I loose the JDBC connection.

Questions:

  1. Is it possible to use an applet with JSBC?
  2. If yes how to do it?
  3. Is there any web server in which to deploy applet and that supports jdbc connection?

My system: Fedora 8, NetBeans 6.5, XAMPP, MySQL.

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

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

发布评论

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

评论(2

溺渁∝ 2024-08-06 11:29:35

您可能会遇到在沙箱中运行的 Applet 的问题,它只能与它来自的服务器通信 - 因此,如果您的数据库位于不同的计算机上,则无法找到它。

一种更好的架构方法是让服务器执行所有 JDBC 操作,并通过 HTTP 将请求的信息传递给客户端,客户端的处理比较简单,主要是呈现用户界面。

You're probably running up against an issue with the Applet running in a sandbox, it can only communicate with the server from which it came - so if your database is on a different machine it can't be found.

A preferable architectural approach is to have your server do all the JDBC and communicate the information requested via HTTP to the client which is thinner dealing mainly presenting the user interface.

狼亦尘 2024-08-06 11:29:35
  1. 是的,可以将 applet 与 jdbc 一起使用。
  2. 请查看此处此处此处了解可能的实现方式。
  3. 尝试用谷歌搜索网络服务器,你会发现很多,其中一个线索是 http://eatj.com/

Rgds,

永旺

  1. Yes its possible to use applet with jdbc.
  2. Look here and here and here for possible ways of implementation.
  3. Try googling for webservers, you will find tons of them, one lead is http://eatj.com/.

Rgds,

Aeon

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