有两种不同的GWT-RPC服务。
TaxService
,其中包含方法TaxDto getTax(ProductDto product);
ProductService
包含方法`Double getTotalWithTax(ProductDto product); 我想从getTax()
调用getTotalWithTax()
方法,我该怎么做?
答案 0 :(得分:3)
要在服务器端调用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;
}
}