GWT - 如何从服务 B 的方法 B 获取服务 A 的方法 A?
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要将模块 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