如何在 JSP 过滤器和 JAVA 程序之间进行通信

发布于 2024-07-16 02:35:58 字数 120 浏览 9 评论 0原文

有什么方法可以将字符串从 JSP 过滤器发送到 JAVA 程序吗?

我尝试过套接字; 没用。

我尝试了外部文件; 没用。

所以,我在这个问题上有点不知所措了。

Is there any way to send a string to a JAVA program from a JSP filter?

I tried sockets; didn't work.

I tried external files; didn't work.

So, I'm kind of at a Witt's end here on the subject.

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

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

发布评论

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

评论(1

苄①跕圉湢 2024-07-23 02:35:58

向 Java 程序发送字符串是什么意思? 该程序是否位于单独的进程中?

如果是这种情况并且您需要同步通信,那么您绝对可以使用 TCP 套接字或仅使用 UDP。 将服务器套接字放在您的Java 程序上。

如果您可以在 Tomcat 服务器上将 Java 程序作为单独的线程运行,那么这将是一个更好更快的解决方案。 只需将 JAR 文件添加到 Java 程序 所在的位置,然后在带有 REQUEST 队列的单独线程上启动它即可与过滤器交互。

What do you mean by sending a String to a Java program? Is the program on a separate process?

If that's the case and you need synchronous communication, you can definitely use TCP sockets or just UDP. Place the server socket on your Java program.

If you can run your Java Program as a separate thread on the Tomcat server, then it will be a better and faster solution. Just add the JAR file where your Java program is and launch it on a separate thread with a REQUEST queue to interact with the filter.

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