本文整理了Java中com.rabbitmq.client.Connection.getServerProperties()
方法的一些代码示例,展示了Connection.getServerProperties()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Connection.getServerProperties()
方法的具体详情如下:
包路径:com.rabbitmq.client.Connection
类名称:Connection
方法名:getServerProperties
暂无
代码示例来源:origin: org.springframework.boot/spring-boot-actuator
private String getVersion() {
return this.rabbitTemplate.execute((channel) -> channel.getConnection()
.getServerProperties().get("version").toString());
}
代码示例来源:origin: com.github.combinedmq/combinedmq
@Override
public Map<String, Object> getServerProperties() {
return connection.getServerProperties();
}
代码示例来源:origin: com.springsource.insight.plugins/insight-plugin-rabbitmq-client
protected void applyConnectionData(Operation op, Connection conn) {
InetAddress address = conn.getAddress();
String host = address.getHostAddress();
int port = conn.getPort();
final String connectionUrl;
if (conn instanceof AMQConnection) {
connectionUrl = conn.toString();
} else {
connectionUrl = "amqp://" + host + ":" + port;
}
op.put("host", host);
op.put("port", port);
op.put("connectionUrl", connectionUrl);
//try to extract server version
String serverVersion = getVersion(conn.getServerProperties());
op.putAnyNonEmpty("serverVersion", serverVersion);
//try to extract client version
String clientVersion = getVersion(conn.getClientProperties());
op.putAnyNonEmpty("clientVersion", clientVersion);
}
内容来源于网络,如有侵权,请联系作者删除!