Springfox:获取当前的外部网址

时间:2018-09-17 11:55:45

标签: springfox

这是我的相关代码段:

URL oauthEndpoint = new URL(
    "http",
    InetAddress.getLocalHost().getHostName(),
    this.port,
    "oauth/token"
);

ResourceOwnerPasswordCredentialsGrant passwordCredentialsGrant = 
        new ResourceOwnerPasswordCredentialsGrant(oauthEndpoint.toString());

如您所见,我正在使用静态值(URL"http""InetAddress.getLocalHost().getHostName()")设置"oauth/token"对象。

我想使用当前环境参数获取此值。我的意思是, 而不是"InetAddress.getLocalHost().getHostName()"我想获取运行服务的当前URL。

有什么想法吗?

0 个答案:

没有答案