Spring Boot应用程序应该只听取Actuator的端口

时间:2016-09-20 14:22:56

标签: spring-boot spring-boot-actuator

我有一个Spring Boot异步应用程序,它不会暴露任何东西,因为它只消耗来自队列的消息。 但是,我想在这个应用程序的管理端口(8081)上公开执行器。

有没有办法只使用Spring Boot公开管理端口(8081)而不是业务一(8080)?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

似乎application.properties风暴似乎已经足够,但它是最好的解决方案吗?

# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------

# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.port=8081

# ----------------------------------------
# ACTUATOR PROPERTIES
# ----------------------------------------

# MANAGEMENT HTTP SERVER (ManagementServerProperties)
management.port=8081