我是靠谱客的博主 温柔香烟,最近开发中收集的这篇文章主要介绍springboot 项目获取当前服务的IP端口地址,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package com.summergao.config;

import org.springframework.beans.factory.annotation.Value;

import org.springframework.context.annotation.Configuration;
import java.net.InetAddress;
import java.net.UnknownHostException;

/**
 * 获取当前服务的IP端口
 *
 * @author SummerGao
 */
@Configuration
public class ServerConfig {
    @Value("${tomcat.port}")
    private Integer port;

    @Value("${tomcat.contextPath}")
    private String contextPath;

    /**
     * 项目获取当前服务的IP端口地址
     *
     * @return
     */
    public  String getUrl() {
        InetAddress address = null;
        try {
            address = InetAddress.getLocalHost();
        } catch (UnknownHostException e) {
            e.printStackTrace();
        }
        return "http://" + address.getHostAddress() + ":" + port + "/" + contextPath;
    }
}

最后

以上就是温柔香烟为你收集整理的springboot 项目获取当前服务的IP端口地址的全部内容,希望文章能够帮你解决springboot 项目获取当前服务的IP端口地址所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部