将现有功能公开为 Web 服务的高效且简单的方法

发布于 2024-12-28 17:49:06 字数 207 浏览 0 评论 0原文

我有一个现有的应用程序(例如“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 技术交流群。

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

发布评论

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

评论(2

浅黛梨妆こ 2025-01-04 17:49:06

根据服务类型:

  • SOAP 服务:JAX-WS
  • RESTful 服务:JAX-RS、Spring-MVC

无论哪种方式,您都可以在类上添加一些注释,并配置框架来公开服务(请参阅无论你选择哪个)

Depending on the type of service:

  • SOAP service: JAX-WS
  • RESTful service: JAX-RS, Spring-MVC

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)

临走之时 2025-01-04 17:49:06

看看 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!

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