如何从另一个 rpc 服务调用 rpc 服务方法?
Posted
技术标签:
【中文标题】如何从另一个 rpc 服务调用 rpc 服务方法?【英文标题】:How to call rpc service method from another rpc service? 【发布时间】:2013-10-10 22:53:24 【问题描述】:有两种不同的 GWT-RPC 服务。
TaxService
包含方法 TaxDto getTax(ProductDto product);
ProductService
包含方法 `Double getTotalWithTax(ProductDto product);
我想从getTotalWithTax()
调用getTax()
方法我该怎么做?
【问题讨论】:
【参考方案1】:要在服务器端调用getTax()
,创建TaxServiceImp
的实例,getTotalWithTax(ProductDto product)
可以访问该实例;从那里调用方法。
public class ProductService Impl extends XsrfProtectedServiceServlet
TaxServiceImp taxServImpInstance = new TaxServiceImp();
Double getTotalWithTax(ProductDto product)
TaxDto taxDtoInstance = taxServImpInstance.getTax();
//process your data and return what you need
return myDouble;
【讨论】:
以上是关于如何从另一个 rpc 服务调用 rpc 服务方法?的主要内容,如果未能解决你的问题,请参考以下文章