0

有两种不同的 GWT-RPC 服务。

  1. TaxService其中包含方法TaxDto getTax(ProductDto product);
  2. ProductService其中包含方法`Double getTotalWithTax(ProductDto product);

我想从我怎么做这个调用getTax()方法?getTotalWithTax()

4

1 回答 1

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;

         }

    }
于 2013-10-11T01:07:52.290 回答