...
Code Block |
---|
String MSB_IP="127.0.0.1"; int MSB_Port=10081; MSBServiceClient msbClient = new MSBServiceClient(MSB_IP, MSB_Port); RestServiceCreater restServiceCreater = new RestServiceCreater(msbClient); AnimalServiceClient implProxy = restServiceCreater.createService(AnimalServiceClient.class); Animal animal = implProxy.queryAnimal("panda").execute().body(); System.out.println("animal:" + animal); |
Note: In order to test the example application, you need to run MSB following this guideĀ MSB Test Environment Setup