为什么默认情况下,Spring Boot 1.5.9.RELEASE在两个端口上启动?

时间:2018-08-16 15:34:24

标签: spring spring-mvc spring-boot

我正在使用Spring Boot 1.5.9.RELEASE,默认情况下它在两个端口上启动。

Tomcat已使用以下端口初始化:8080(http)8090(http)

Tomcat在端口上启动:8080(http)8090(http)

我尝试使用server.port设置不同的端口,但是仅将第一个端口8080覆盖为另一个端口,而8090仍然保留。还尝试将具有management.port的执行器端口更改为另一个端口。

我看到spring Boot 2.x没有这个问题。为什么Spring Boot 1.x默认在两个端口上运行以及如何在单个端口上运行?

application.properties

server.context-path=/test-app

endpoints.actuator.enabled=true

management.security.enabled=false

management.health.defaults.enabled=true

management.health.mail.enabled=false

management.port=8981

0 个答案:

没有答案