我是靠谱客的博主 碧蓝保温杯,最近开发中收集的这篇文章主要介绍SpringBoot2.2.x获取项目的ip和端口号,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

SpringBoot2.2.x获取项目的ip和端口号

  1. 编写服务类
package com.cloud.route.V4.template.config;
import org.springframework.boot.web.context.WebServerInitializedEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.context.annotation.Configuration;
import java.net.InetAddress;
import java.net.UnknownHostException;
@Component
public class ServerConfig implements ApplicationListener<WebServerInitializedEvent> {
private int serverPort;
public String getUrl() {
InetAddress address = null;
try {
address = InetAddress.getLocalHost();
} catch (UnknownHostException e) {
e.printStackTrace();
}
return "http://"+ address.getHostAddress() +":"+this.serverPort;
}
@Override
public void onApplicationEvent(WebServerInitializedEvent event) {
this.serverPort = event.getWebServer().getPort();
}
}
  1. 业务层注入调用
@Autowired
private ServerConfig serverConfig;
public String getUrl() {
return
serverConfig.getUrl();
}

转载地址:https://blog.csdn.net/mibi8840/article/details/83824134

最后

以上就是碧蓝保温杯为你收集整理的SpringBoot2.2.x获取项目的ip和端口号的全部内容,希望文章能够帮你解决SpringBoot2.2.x获取项目的ip和端口号所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部