如何在 JSP 过滤器和 JAVA 程序之间进行通信
有什么方法可以将字符串从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向 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.