org.apache.dubbo.common.Constants Java Examples
The following examples show how to use
org.apache.dubbo.common.Constants.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DubboAppContextFilter.java From Sentinel-Dashboard-Nacos with Apache License 2.0 | 5 votes |
@Override public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException { String application = invoker.getUrl().getParameter(Constants.APPLICATION_KEY); if (application != null) { RpcContext.getContext().setAttachment(DubboUtils.SENTINEL_DUBBO_APPLICATION_KEY, application); } return invoker.invoke(invocation); }
Example #2
Source File: DubboAppContextFilter.java From dubbo-sentinel-support with Apache License 2.0 | 5 votes |
@Override public Result invoke(Invoker<?> invoker, Invocation invocation) throws RpcException { String application = invoker.getUrl().getParameter(Constants.APPLICATION_KEY); if (application != null) { RpcContext.getContext().setAttachment(DubboUtils.SENTINEL_DUBBO_APPLICATION_KEY, application); } return invoker.invoke(invocation); }
Example #3
Source File: MockServer.java From java-specialagent with Apache License 2.0 | 5 votes |
MockServer() { linkLocalIp = NetUtils.getLocalAddress().getHostAddress(); if (linkLocalIp != null) { // avoid dubbo's logic which might pick docker ip System.setProperty(Constants.DUBBO_IP_TO_BIND, linkLocalIp); System.setProperty(Constants.DUBBO_IP_TO_REGISTRY, linkLocalIp); } service = new ServiceConfig<>(); service.setApplication(new ApplicationConfig("test")); service.setRegistry(new RegistryConfig(RegistryConfig.NO_AVAILABLE)); service.setProtocol(new ProtocolConfig("dubbo", TestUtil.nextFreePort())); service.setInterface(GreeterService.class); service.setRef(new GreeterServiceImpl()); }