springboot 获取当前项目的端口号 ip

Posted code_____monkey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 获取当前项目的端口号 ip相关的知识,希望对你有一定的参考价值。

增加配置类

@Component
public class IpConfiguration implements ApplicationListener<WebServerInitializedEvent> {

    private int serverPort;

    @Override
    public void onApplicationEvent(WebServerInitializedEvent event) {
        this.serverPort = event.getWebServer().getPort();
    }

    public int getPort() {
        return this.serverPort;
    }
}

获取ip 端口号的代码

	@Autowired
	IpConfiguration ip;
	
		InetAddress   address = InetAddress.getLocalHost();
		System.out.println("端口号"+address.getHostAddress()+",ip:"+ip.getPort());

springboot 获取当前项目的端口号 ip_IT 工农兵-CSDN博客_springboot 获取端口号增加配置类@Componentpublic class IpConfiguration implements ApplicationListener&lt;WebServerInitializedEvent&gt; { private int serverPort; @Override public void onApplicationEvent(WebServer...https://blog.csdn.net/higher_gao/article/details/88342231

以上是关于springboot 获取当前项目的端口号 ip的主要内容,如果未能解决你的问题,请参考以下文章

如何在java中获取当前项目的路径

如何从 SearchBar 中获取 Tableview 中所有项目的当前项目的索引

如何在 sbt 子项目 build.sbt 文件中获取对当前项目的引用

java通过虚拟机设置参数的方式动态获取当前项目的绝对路径

linux socket通讯如何获取本地的源端口号

java中怎么获取客户端的真实的ip和端口号