コード例 #1
0
ファイル: RpcTest.java プロジェクト: Godchin1990/std-nio
 @Test
 public void testConsumer() throws IOException {
   IHelloService helloService = RpcFramework.refer(IHelloService.class, "127.0.0.1", 8888);
   Hello hello = helloService.sayHello("sence", "hello");
   System.out.print(hello);
 }