获取当前机器ip:
private static String getIpAddress() throws UnknownHostException {
InetAddress address = InetAddress.getLocalHost();
return address.getHostAddress();
}
获取容器port:
String port = String.valueOf(request.getLocalPort());
2023-02-24 10:47:47
获取当前机器ip:
private static String getIpAddress() throws UnknownHostException {
InetAddress address = InetAddress.getLocalHost();
return address.getHostAddress();
}
获取容器port:
String port = String.valueOf(request.getLocalPort());
下一篇:Mysql 字符串分隔函数