SpringBoot开启多端口探究--开启management端口
在Spring Boot中,你可以通过配置application.properties
或application.yml
文件来改变管理端口(management.server.port)的值。默认情况下,Spring Boot 2.x使用的是8080端口。
以下是如何在Spring Boot应用中更改管理端口的示例:
- 如果你使用的是
application.properties
文件,你可以添加如下配置:
management.server.port=8081
- 如果你使用的是
application.yml
文件,你可以添加如下配置:
management:
server:
port: 8081
这样,Spring Boot Actuator端点将会监听8081端口,而不是默认的8080端口。
请注意,更改管理端口可能会涉及到安全配置(如果你使用了Spring Security),确保新端口在安全配置中得到正确的开放。
评论已关闭