您的位置:首页 > 其它

hessian接口测试案例

2017-03-30 15:25 302 查看
hessian接口测试案例:

String url = "http://localhost:9090/admin/remote/****";

HessianProxyFactory factory = new HessianProxyFactory();

TestService testService = (TestService) factory.create(
TestService.class, url);

//参数对象

Test test = new Test();

test.setid(1);

testService.createService(test);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  hessian