将现有功能公开为 Web 服务的高效且简单的方法
我有一个现有的应用程序(例如“A”),我想从另一个应用程序“B”调用该应用程序的java函数。
我不想将此应用程序(“A”)的依赖项放在我的调用应用程序(“B”)中,以避免在多个位置运行“A”。
我们考虑将“A”的功能公开为 Web 服务,“B”可以通过依赖“A”的客户端来调用该功能。
什么是有效且简单的方法来做到这一点。
提前致谢。
I have an existing application (say 'A') and I want to call a java function of this app from another app 'B'.
I don't want to put dependency of this app('A') in my calling application('B') to avoid running 'A' at multiple places.
We thought of exposing 'A's function as a web service, which can be called by 'B' by putting dependency on the 'A's client.
What is the efficient and easy way to do this.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据服务类型:
无论哪种方式,您都可以在类上添加一些注释,并配置框架来公开服务(请参阅无论你选择哪个)
Depending on the type of service:
Either way, you put a couple of annotations on your class, and configure the framework to expose the service (refer to the documentation of whichever you choose)
看看 Jax-WS。
我不知道什么更容易:D
您可以使用注释方法
@WebMethod 并将您的工作部署到应用程序服务器上 - 就这样!
Have a look at Jax-WS.
I don't know what's easier :D
You can annotate methods with
@WebMethod and deploy your work onto a application server - and there you go!