GWT - 如何从服务 B 的方法 B 获取服务 A 的方法 A?

发布于 2024-11-27 20:33:16 字数 297 浏览 1 评论 0原文

我有 GWT 项目 .war A 和 .war B...每个 .war 的 servlet 都包含类似

  • .war A - String methodA(){return "this is method A of .war A";}
  • .war B - String 的 方法methodB(){return(?).methodA();问题

是...我想从 methodB 获取 methodA 值。所以我的问题是... 可以这样做吗?根据 GWT 如何做到这一点?

任何有用的评论表示赞赏

I have GWT projects as .war A and .war B... each .war's servlet contains methods like a

  • .war A - String methodA(){return "this is method A of .war A";}
  • .war B - String methodB(){return (?).methodA(); }

The thing is... I'd like to get methodA value from methodB. So my question is...
Is it possible to do that? And how to do that according to GWT?

Any useful comment is appreciated

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

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

发布评论

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

评论(1

只涨不跌 2024-12-04 20:33:16

为此,您需要将模块 B 中的所有模块(例如 A)包含在 gwt 配置文件中。

之后,使用Generator动态创建一个方法,通过调用good模块返回方法A的值

To do that, you need to include all modules (like A) in module B in the gwt config file.

After that, use a Generator to dynamically create a method which return the value of method A by calling the good module

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