遠(yuǎn)程服務(wù)調(diào)用測(cè)試
public class ConsumerMain {
public static void main(String[] args) throws IOException {
Invocation invocation = new Invocation(HelloService.class.getName(), "sayHello", new Object[]{"myRpc的客戶端"}, new Class[]{String.class});
HttpClient httpClient=new HttpClient();
String result = httpClient.post("localhost", 8080, invocation);
System.out.println(result);
}
}