Struts中Web应用程序如何相互通信?
我在 Web 应用程序服务器中有两个 Web 应用程序。我想将数据从一个应用程序获取到另一个应用程序。我在 Struts 中该怎么做?我知道可以通过网络服务实现。但是,我是否可以使用 struts 来获取它?
I have two web applications in web application server. i want to get data from one application to another. how do i do in Struts. i know that it is possible by webservices. But, is there anyway that i could get it using struts?.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用查询字符串通过请求参数传递数据。
这适用于简单的情况。对于复杂的需求/交换,请使用网络服务或其他集成技术。
Use query string to pass data using request parameters.
This'll work for simple cases. For complex requirements/exchange please use Web Services or other integration technologies.