本文整理汇总了Java中com.alibaba.dubbo.rpc.service.EchoService类的典型用法代码示例。如果您正苦于以下问题:Java EchoService类的具体用法?Java EchoService怎么用?Java EchoService使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
EchoService类属于com.alibaba.dubbo.rpc.service包,在下文中一共展示了EchoService类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testDubboProtocolMultiService
import com.alibaba.dubbo.rpc.service.EchoService; //导入依赖的package包/类
@Test
public void testDubboProtocolMultiService() throws Exception
{
DemoService service = new DemoServiceImpl();
protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName())));
service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName())));
RemoteService remote = new RemoteServiceImpl();
protocol.export(proxy.getInvoker(remote, RemoteService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + RemoteService.class.getName())));
remote = proxy.getProxy(protocol.refer(RemoteService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + RemoteService.class.getName())));
service.sayHello("world");
// test netty client
assertEquals("world", service.echo("world"));
assertEquals("hello [email protected]" + RemoteServiceImpl.class.getName(), remote.sayHello("world"));
EchoService serviceEcho = (EchoService)service;
assertEquals(serviceEcho.$echo("test"), "test");
EchoService remoteEecho = (EchoService)remote;
assertEquals(remoteEecho.$echo("ok"), "ok");
}
示例2: getProxy
import com.alibaba.dubbo.rpc.service.EchoService; //导入依赖的package包/类
public <T> T getProxy(Invoker<T> invoker) throws RpcException {
Class<?>[] interfaces = null;
String config = invoker.getUrl().getParameter("interfaces");
if (config != null && config.length() > 0) {
String[] types = Constants.COMMA_SPLIT_PATTERN.split(config);
if (types != null && types.length > 0) {
interfaces = new Class<?>[types.length + 2];
interfaces[0] = invoker.getInterface();
interfaces[1] = EchoService.class;
for (int i = 0; i < types.length; i ++) {
interfaces[i + 1] = ReflectUtils.forName(types[i]);
}
}
}
if (interfaces == null) {
interfaces = new Class<?>[] {invoker.getInterface(), EchoService.class};
}
return getProxy(invoker, interfaces);
}
示例3: testRmiProtocol_echoService
import com.alibaba.dubbo.rpc.service.EchoService; //导入依赖的package包/类
@Ignore
@Test
public void testRmiProtocol_echoService() throws Exception
{
DemoService service = new DemoServiceImpl();
Exporter<?> rpcExporter = protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("rmi://127.0.0.1:9002/TestService")));
// cast to EchoService
EchoService echo = proxy.getProxy(protocol.refer(EchoService.class, URL.valueOf("rmi://127.0.0.1:9002/TestService")));
assertEquals(echo.$echo("test"), "test");
assertEquals(echo.$echo("abcdefg"), "abcdefg");
assertEquals(echo.$echo(1234), 1234);
rpcExporter.unexport();
RemoteService remoteService = new RemoteServiceImpl();
rpcExporter = protocol.export(proxy.getInvoker(remoteService, RemoteService.class, URL.valueOf("rmi://127.0.0.1:9002/remoteService")));
// cast to EchoService
echo = proxy.getProxy(protocol.refer(EchoService.class, URL.valueOf("rmi://127.0.0.1:9002/remoteService")));
assertEquals(echo.$echo("test"), "test");
assertEquals(echo.$echo("abcdefg"), "abcdefg");
assertEquals(echo.$echo(1234), 1234);
rpcExporter.unexport();
}
示例4: testDubboProtocolMultiService
import com.alibaba.dubbo.rpc.service.EchoService; //导入依赖的package包/类
@Test
public void testDubboProtocolMultiService() throws Exception
{
DemoService service = new DemoServiceImpl();
protocol.export(proxy.getInvoker(service, DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName())));
service = proxy.getProxy(protocol.refer(DemoService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + DemoService.class.getName())));
RemoteService remote = proxy.getProxy(protocol.refer(RemoteService.class, URL.valueOf("dubbo://127.0.0.1:9010/" + RemoteService.class.getName())));
service.sayHello("world");
// test netty client
assertEquals("world", service.echo("world"));
assertEquals("hello [email protected]" + RemoteServiceImpl.class.getName(), remote.sayHello("world"));
EchoService serviceEcho = (EchoService)service;
assertEquals(serviceEcho.$echo("test"), "test");
EchoService remoteEecho = (EchoService)remote;
assertEquals(remoteEecho.$echo("ok"), "ok");
}
示例5: getProxy
import com.alibaba.dubbo.rpc.service.EchoService; //导入依赖的package包/类
public <T> T getProxy(Invoker<T> invoker) throws JahhanException {
Class<?>[] interfaces = null;
String config = invoker.getUrl().getParameter("interfaces");
if (config != null && config.length() > 0) {
String[] types = Constants.COMMA_SPLIT_PATTERN.split(config);
if (types != null && types.length > 0) {
interfaces = new Class<?>[types.length + 2];
interfaces[0] = invoker.getInterface();
interfaces[1] = EchoService.class;
for (int i = 0; i < types.length; i ++) {
interfaces[i + 1] = ReflectUtils.forName(types[i]);
}
}
}
if (interfaces == null) {
interfaces = new Class<?>[] {invoker.getInterface(), EchoService.class};
}
return getProxy(invoker, interfaces);
}