Java Code Examples for com.alibaba.rocketmq.remoting.common.RemotingUtil#getLocalAddress()
The following examples show how to use
com.alibaba.rocketmq.remoting.common.RemotingUtil#getLocalAddress() .
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: MQClientAPIImpl.java From RocketMQ-Master-analyze with Apache License 2.0 | 5 votes |
public void start() { this.remotingClient.start(); // Get app info try { // 本地ip String localAddress = RemotingUtil.getLocalAddress(); projectGroupPrefix = this.getProjectGroupByIp(localAddress, 3000); log.info("The client[{}] in project group: {}", localAddress, projectGroupPrefix); } catch (Exception e) { } }
Example 2
Source File: RemotingUtilTest.java From reading-and-annotate-rocketmq-3.4.6 with GNU General Public License v3.0 | 4 votes |
@Test public void test() throws Exception { String a = RemotingUtil.getLocalAddress(); System.out.println(a); }
Example 3
Source File: RemotingUtilTest.java From rocketmq with Apache License 2.0 | 4 votes |
@Test public void test() throws Exception { String a = RemotingUtil.getLocalAddress(); System.out.println(a); }
Example 4
Source File: RemotingUtilTest.java From RocketMQ-Master-analyze with Apache License 2.0 | 4 votes |
@Test public void test() throws Exception { String a = RemotingUtil.getLocalAddress(); System.out.println(a); }