Java Code Examples for com.alibaba.dubbo.common.URL#removeParameter()
The following examples show how to use
com.alibaba.dubbo.common.URL#removeParameter() .
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: OverrideServiceImpl.java From dubbox with Apache License 2.0 | 6 votes |
public void enableOverride(Long id) { if(id == null) { throw new IllegalStateException("no override id"); } URL oldOverride = findOverrideUrl(id); if(oldOverride == null) { throw new IllegalStateException("Override was changed!"); } if(oldOverride.getParameter("enabled", true)) { return; } URL newOverride = oldOverride.removeParameter("enabled"); registryService.unregister(oldOverride); registryService.register(newOverride); }
Example 2
Source File: OverrideServiceImpl.java From dubbox with Apache License 2.0 | 6 votes |
public void enableOverride(Long id) { if(id == null) { throw new IllegalStateException("no override id"); } URL oldOverride = findOverrideUrl(id); if(oldOverride == null) { throw new IllegalStateException("Override was changed!"); } if(oldOverride.getParameter("enabled", true)) { return; } URL newOverride = oldOverride.removeParameter("enabled"); registryService.unregister(oldOverride); registryService.register(newOverride); }
Example 3
Source File: OverrideServiceImpl.java From dubbox-hystrix with Apache License 2.0 | 6 votes |
public void enableOverride(Long id) { if(id == null) { throw new IllegalStateException("no override id"); } URL oldOverride = findOverrideUrl(id); if(oldOverride == null) { throw new IllegalStateException("Override was changed!"); } if(oldOverride.getParameter("enabled", true)) { return; } URL newOverride = oldOverride.removeParameter("enabled"); registryService.unregister(oldOverride); registryService.register(newOverride); }
Example 4
Source File: Provider.java From dubbox with Apache License 2.0 | 5 votes |
public URL toUrl() { Map<String, String> serviceName2Map = ConvertUtil.serviceName2Map(getService()); /*if(!serviceName2Map.containsKey(Constants.INTERFACE_KEY)) { throw new IllegalArgumentException("No interface info"); } if(!serviceName2Map.containsKey(Constants.VERSION_KEY)) { throw new IllegalArgumentException("No version info"); }*/ String u = getUrl(); URL url = URL.valueOf(u + "?" + getParameters()); url = url.addParameters(serviceName2Map); boolean dynamic = isDynamic(); if(!dynamic) { url = url.addParameter(Constants.DYNAMIC_KEY, false); } boolean enabled = isEnabled(); if(enabled != url.getParameter("enabled", true)) { if(enabled) { url = url.removeParameter("enabled"); } else { url = url.addParameter("enabled", false); } } return url; }
Example 5
Source File: HeartbeatHandlerTest.java From dubbo-2.6.5 with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 6
Source File: ExtensionLoaderTest.java From dubbox with Apache License 2.0 | 5 votes |
@Test public void testLoadActivateExtension() throws Exception { // test default URL url = URL.valueOf("test://localhost/test"); List<ActivateExt1> list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "default_group"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ActivateExt1Impl1.class); // test group url = url.addParameter(Constants.GROUP_KEY, "group1"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "group1"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == GroupActivateExtImpl.class); // test value url = url.removeParameter(Constants.GROUP_KEY); url = url.addParameter(Constants.GROUP_KEY, "value"); url = url.addParameter("value", "value"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "value"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ValueActivateExtImpl.class); // test order url = URL.valueOf("test://localhost/test"); url = url.addParameter(Constants.GROUP_KEY, "order"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "order"); Assert.assertEquals(2, list.size()); Assert.assertTrue(list.get(0).getClass() == OrderActivateExtImpl1.class); Assert.assertTrue(list.get(1).getClass() == OrderActivateExtImpl2.class); }
Example 7
Source File: HeartbeatHandlerTest.java From dubbox with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 8
Source File: HeartbeatHandlerTest.java From dubbo-remoting-netty4 with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555?transporter=netty4"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 9
Source File: Provider.java From dubbox with Apache License 2.0 | 5 votes |
public URL toUrl() { Map<String, String> serviceName2Map = ConvertUtil.serviceName2Map(getService()); /*if(!serviceName2Map.containsKey(Constants.INTERFACE_KEY)) { throw new IllegalArgumentException("No interface info"); } if(!serviceName2Map.containsKey(Constants.VERSION_KEY)) { throw new IllegalArgumentException("No version info"); }*/ String u = getUrl(); URL url = URL.valueOf(u + "?" + getParameters()); url = url.addParameters(serviceName2Map); boolean dynamic = isDynamic(); if(!dynamic) { url = url.addParameter(Constants.DYNAMIC_KEY, false); } boolean enabled = isEnabled(); if(enabled != url.getParameter("enabled", true)) { if(enabled) { url = url.removeParameter("enabled"); } else { url = url.addParameter("enabled", false); } } return url; }
Example 10
Source File: ExtensionLoaderTest.java From dubbo3 with Apache License 2.0 | 5 votes |
@Test public void testLoadActivateExtension() throws Exception { // test default URL url = URL.valueOf("test://localhost/test"); List<ActivateExt1> list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "default_group"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ActivateExt1Impl1.class); // test group url = url.addParameter(Constants.GROUP_KEY, "group1"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "group1"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == GroupActivateExtImpl.class); // test value url = url.removeParameter(Constants.GROUP_KEY); url = url.addParameter(Constants.GROUP_KEY, "value"); url = url.addParameter("value", "value"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "value"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ValueActivateExtImpl.class); // test order url = URL.valueOf("test://localhost/test"); url = url.addParameter(Constants.GROUP_KEY, "order"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "order"); Assert.assertEquals(2, list.size()); Assert.assertTrue(list.get(0).getClass() == OrderActivateExtImpl1.class); Assert.assertTrue(list.get(1).getClass() == OrderActivateExtImpl2.class); }
Example 11
Source File: HeartbeatHandlerTest.java From dubbo3 with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 12
Source File: HeartbeatHandlerTest.java From dubbo-remoting-netty4 with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555?transporter=netty4"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 13
Source File: ExtensionLoaderTest.java From dubbox with Apache License 2.0 | 5 votes |
@Test public void testLoadActivateExtension() throws Exception { // test default URL url = URL.valueOf("test://localhost/test"); List<ActivateExt1> list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "default_group"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ActivateExt1Impl1.class); // test group url = url.addParameter(Constants.GROUP_KEY, "group1"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "group1"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == GroupActivateExtImpl.class); // test value url = url.removeParameter(Constants.GROUP_KEY); url = url.addParameter(Constants.GROUP_KEY, "value"); url = url.addParameter("value", "value"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "value"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ValueActivateExtImpl.class); // test order url = URL.valueOf("test://localhost/test"); url = url.addParameter(Constants.GROUP_KEY, "order"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "order"); Assert.assertEquals(2, list.size()); Assert.assertTrue(list.get(0).getClass() == OrderActivateExtImpl1.class); Assert.assertTrue(list.get(1).getClass() == OrderActivateExtImpl2.class); }
Example 14
Source File: HeartbeatHandlerTest.java From dubbox with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 15
Source File: Provider.java From dubbox with Apache License 2.0 | 5 votes |
public URL toUrl() { Map<String, String> serviceName2Map = ConvertUtil.serviceName2Map(getService()); /*if(!serviceName2Map.containsKey(Constants.INTERFACE_KEY)) { throw new IllegalArgumentException("No interface info"); } if(!serviceName2Map.containsKey(Constants.VERSION_KEY)) { throw new IllegalArgumentException("No version info"); }*/ String u = getUrl(); URL url = URL.valueOf(u + "?" + getParameters()); url = url.addParameters(serviceName2Map); boolean dynamic = isDynamic(); if(!dynamic) { url = url.addParameter(Constants.DYNAMIC_KEY, false); } boolean enabled = isEnabled(); if(enabled != url.getParameter("enabled", true)) { if(enabled) { url = url.removeParameter("enabled"); } else { url = url.addParameter("enabled", false); } } return url; }
Example 16
Source File: ExtensionLoaderTest.java From dubbox with Apache License 2.0 | 5 votes |
@Test public void testLoadActivateExtension() throws Exception { // test default URL url = URL.valueOf("test://localhost/test"); List<ActivateExt1> list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "default_group"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ActivateExt1Impl1.class); // test group url = url.addParameter(Constants.GROUP_KEY, "group1"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "group1"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == GroupActivateExtImpl.class); // test value url = url.removeParameter(Constants.GROUP_KEY); url = url.addParameter(Constants.GROUP_KEY, "value"); url = url.addParameter("value", "value"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "value"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ValueActivateExtImpl.class); // test order url = URL.valueOf("test://localhost/test"); url = url.addParameter(Constants.GROUP_KEY, "order"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "order"); Assert.assertEquals(2, list.size()); Assert.assertTrue(list.get(0).getClass() == OrderActivateExtImpl1.class); Assert.assertTrue(list.get(1).getClass() == OrderActivateExtImpl2.class); }
Example 17
Source File: HeartbeatHandlerTest.java From dubbox with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 18
Source File: HeartbeatHandlerTest.java From dubbox with Apache License 2.0 | 5 votes |
@Test public void testServerHeartbeat() throws Exception { URL serverURL = URL.valueOf("header://localhost:55555?transporter=netty4"); serverURL = serverURL.addParameter(Constants.HEARTBEAT_KEY, 1000); TestHeartbeatHandler handler = new TestHeartbeatHandler(); server = Exchangers.bind(serverURL, handler); System.out.println("Server bind successfully"); FakeChannelHandlers.setTestingChannelHandlers(); serverURL = serverURL.removeParameter(Constants.HEARTBEAT_KEY); client = Exchangers.connect(serverURL); Thread.sleep(10000); Assert.assertTrue(handler.disconnectCount > 0); System.out.println("disconnect count " + handler.disconnectCount); }
Example 19
Source File: Provider.java From open-capacity-platform with Apache License 2.0 | 5 votes |
public URL toUrl() { Map<String, String> serviceName2Map = ConvertUtil.serviceName2Map(getService()); /*if(!serviceName2Map.containsKey(Constants.INTERFACE_KEY)) { throw new IllegalArgumentException("No interface info"); } if(!serviceName2Map.containsKey(Constants.VERSION_KEY)) { throw new IllegalArgumentException("No version info"); }*/ String u = getUrl(); URL url = URL.valueOf(u + "?" + getParameters()); url = url.addParameters(serviceName2Map); boolean dynamic = isDynamic(); if (!dynamic) { url = url.addParameter(Constants.DYNAMIC_KEY, false); } boolean enabled = isEnabled(); if (enabled != url.getParameter("enabled", true)) { if (enabled) { url = url.removeParameter("enabled"); } else { url = url.addParameter("enabled", false); } } return url; }
Example 20
Source File: ExtensionLoaderTest.java From dubbo-2.6.5 with Apache License 2.0 | 5 votes |
@Test public void testLoadActivateExtension() throws Exception { // test default URL url = URL.valueOf("test://localhost/test"); List<ActivateExt1> list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "default_group"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ActivateExt1Impl1.class); // test group url = url.addParameter(Constants.GROUP_KEY, "group1"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "group1"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == GroupActivateExtImpl.class); // test value url = url.removeParameter(Constants.GROUP_KEY); url = url.addParameter(Constants.GROUP_KEY, "value"); url = url.addParameter("value", "value"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "value"); Assert.assertEquals(1, list.size()); Assert.assertTrue(list.get(0).getClass() == ValueActivateExtImpl.class); // test order url = URL.valueOf("test://localhost/test"); url = url.addParameter(Constants.GROUP_KEY, "order"); list = ExtensionLoader.getExtensionLoader(ActivateExt1.class) .getActivateExtension(url, new String[]{}, "order"); Assert.assertEquals(2, list.size()); Assert.assertTrue(list.get(0).getClass() == OrderActivateExtImpl1.class); Assert.assertTrue(list.get(1).getClass() == OrderActivateExtImpl2.class); }