Spring 引导 - 如何获取 运行 端口

Spring Boot - How to get the running port

我有一个 spring 引导应用程序(使用嵌入式 tomcat 7),并且我在我的 application.properties 中设置了 server.port = 0 所以我可以有一个随机端口.服务器启动后 运行 在端口上,我需要能够获得所选的端口。

我不能使用 @Value("$server.port"),因为它是零。这是一条看似简单的信息,为什么我不能从我的 java 代码访问它?我怎样才能访问它?

感谢@Dirk Lachowski 为我指明了正确的方向。该解决方案并不像我希望的那样优雅,但我让它工作了。阅读 spring 文档,我可以监听 EmbeddedServletContainerInitializedEvent 并在服务器启动后获取端口 运行。这是它的样子 -

import org.springframework.boot.context.embedded.EmbeddedServletContainerInitializedEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;




    @Component
    public class MyListener implements ApplicationListener<EmbeddedServletContainerInitializedEvent> {

      @Override
      public void onApplicationEvent(final EmbeddedServletContainerInitializedEvent event) {
          int thePort = event.getEmbeddedServletContainer().getPort();
      }
    }

您可以在测试期间通过注入 local.server.port 值来获取嵌入式 Tomcat 实例正在使用的端口:

// Inject which port we were assigned
@Value("${local.server.port}")
int port;

Spring 的环境为您保存了这些信息。

@Autowired
Environment environment;

String port = environment.getProperty("local.server.port");

从表面上看,这看起来与注入注释为 @Value("${local.server.port}")(或 @LocalServerPort 的字段相同),因此在启动时会抛出自动装配失败,因为该值直到上下文已完全初始化。此处的区别在于此调用是在运行时业务逻辑中隐式进行的,而不是在应用程序启动时调用,因此端口的 'lazy-fetch' 解析正常。

None 这些解决方案对我有用。在构建 Swagger 配置 bean 时,我需要知道服务器端口。使用 ServerProperties 对我有用:

import javax.annotation.PostConstruct;
import javax.inject.Inject;
import javax.ws.rs.ApplicationPath;

import io.swagger.jaxrs.config.BeanConfig;
import io.swagger.jaxrs.listing.ApiListingResource;
import io.swagger.jaxrs.listing.SwaggerSerializers;

import org.glassfish.jersey.server.ResourceConfig;
import org.springframework.stereotype.Component;

@Component
@ApplicationPath("api")
public class JerseyConfig extends ResourceConfig 
{
    @Inject
    private org.springframework.boot.autoconfigure.web.ServerProperties serverProperties;

    public JerseyConfig() 
    {
        property(org.glassfish.jersey.server.ServerProperties.BV_SEND_ERROR_IN_RESPONSE, true);
    }

    @PostConstruct
    protected void postConstruct()
    {
        // register application endpoints
        registerAndConfigureSwaggerUi();
    }

    private void registerAndConfigureSwaggerUi()
    {
        register(ApiListingResource.class);
        register(SwaggerSerializers.class);

        final BeanConfig config = new BeanConfig();
        // set other properties
        config.setHost("localhost:" + serverProperties.getPort()); // gets server.port from application.properties file         
    }
}

此示例使用 Spring 引导自动配置和 JAX-RS(而非 Spring MVC)。

从 Spring Boot 1.4.0 开始,您可以在测试中使用它:

import org.springframework.boot.context.embedded.LocalServerPort;

@SpringBootTest(classes = {Application.class}, webEnvironment = WebEnvironment.RANDOM_PORT)
public class MyTest {

  @LocalServerPort
  int randomPort;

  // ...
}

是否也可以通过类似的方式访问管理端口,例如:

  @SpringBootTest(classes = {Application.class}, webEnvironment = WebEnvironment.RANDOM_PORT)
  public class MyTest {

    @LocalServerPort
    int randomServerPort;

    @LocalManagementPort
    int randomManagementPort;

只是为了像我一样配置了他们的应用程序的其他人从我经历的事情中受益...

None 上述解决方案对我有用,因为我的项目库下有一个 ./config 目录,其中包含 2 个文件:

application.properties
application-dev.properties

application.properties 我有:

spring.profiles.active = dev  # set my default profile to 'dev'

application-dev.properties 我有:

server_host = localhost
server_port = 8080

当我从 CLI 运行 我的 fat jar 时,*.properties 文件将从 ./config 目录读取,一切都很好。

好吧,事实证明这些属性文件完全覆盖了我的 Spock 规范中 @SpringBootTest 中的 webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT 设置。无论我尝试了什么,即使 webEnvironment 设置为 RANDOM_PORT Spring 也总是会在端口 8080 上启动嵌入式 Tomcat 容器(或者我在我的 ./config/*.properties 个文件)。

我能够克服这个问题的唯一方法是在我的 Spock 集成规范中向 @SpringBootTest 注释添加显式 properties = "server_port=0"

@SpringBootTest (webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT, properties = "server_port=0")

然后,直到那时 Spring 才最终开始在随机端口上启动 Tomcat。恕我直言,这是一个 Spring 测试框架错误,但我相信他们对此会有自己的看法。

希望这对某人有所帮助。

请确保您导入了正确的包

import org.springframework.core.env.Environment;

然后使用环境对象

@Autowired
private Environment env;    // Environment Object containts the port number

 @GetMapping("/status")
  public String status()
    {
   return "it is runing on"+(env.getProperty("local.server.port"));
    }

在 Spring Boot 2 之后,发生了很多变化。上面给出的答案在 Spring Boot 2 之前有效。现在,如果您 运行 您的应用程序具有服务器端口的运行时参数,那么您将只能通过 @Value("${server.port}") 获得静态值,即在 application.properties 文件中提到。现在要获取服务器所在的实际端口 运行,请使用以下方法:

    @Autowired
    private ServletWebServerApplicationContext server;

    @GetMapping("/server-port")
    public String serverPort() {

        return "" + server.getWebServer().getPort();
    }

此外,如果您将应用程序用作 Eureka/Discovery 具有负载平衡 RestTemplateWebClient 的客户端,上述方法将 return 确切的端口号。

您可以从

获取服务器端口
HttpServletRequest
@Autowired
private HttpServletRequest request;

@GetMapping(value = "/port")
public Object getServerPort() {
   System.out.println("I am from " + request.getServerPort());
   return "I am from  " + request.getServerPort();
}
    

我用一种代理bean解决了它。客户端在需要时初始化,届时端口应该可用:

@Component
public class GraphQLClient {

    private ApolloClient apolloClient;
    private final Environment environment;

    public GraphQLClient(Environment environment) {
        this.environment = environment;
    }

    public ApolloClient getApolloClient() {
        if (apolloClient == null) {
            String port = environment.getProperty("local.server.port");
            initApolloClient(port);
        }
        return apolloClient;
    }

    public synchronized void initApolloClient(String port) {
        this.apolloClient = ApolloClient.builder()
                .serverUrl("http://localhost:" + port + "/graphql")
                .build();
    }

    public <D extends Operation.Data, T, V extends Operation.Variables> GraphQLCallback<T> graphql(Operation<D, T, V> operation) {
        GraphQLCallback<T> graphQLCallback = new GraphQLCallback<>();
        if (operation instanceof Query) {
            Query<D, T, V> query = (Query<D, T, V>) operation;
            getApolloClient()
                    .query(query)
                    .enqueue(graphQLCallback);
        } else {
            Mutation<D, T, V> mutation = (Mutation<D, T, V>) operation;
            getApolloClient()
                    .mutate(mutation)
                    .enqueue(graphQLCallback);

        }
        return graphQLCallback;
    }
}

我在 Spring 2.5.5 并使用 Junit 4.13.2,这是我的解决方案:

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.web.server.LocalServerPort;
import org.springframework.test.context.junit4.SpringRunner;

// tell Java the environment your testcase running is in Spring, 
// which will enable the auto configuration such as value injection
@RunWith(SpringRunner.class)
@SpringBootTest(
    class = Application.class, 
    webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class SimpleWebTest {

    @LocalServerPort
    private int randomPort;

    @Test
    public void test() {
        // use randomPort ...
        System.out.println(randomPort);
    }

}