fix:未配置server.port参数,文件遗漏

pull/105/head
voilaf 3 years ago
parent 37e871050b
commit 3854f76604

@ -37,7 +37,7 @@ public class IdentifyUtil {
return identify; return identify;
} }
String ip = hippo4JInetUtils.findFirstNonLoopbackHostInfo().getIpAddress(); String ip = hippo4JInetUtils.findFirstNonLoopbackHostInfo().getIpAddress();
String port = environment.getProperty("server.port"); String port = environment.getProperty("server.port", "8080");
String identification = StrUtil.builder(ip, String identification = StrUtil.builder(ip,
":", ":",
port, port,

Loading…
Cancel
Save