How to configure the management server port, how is it implemented?

When reading spring boot documentation ( http://docs.spring.io/spring-boot/docs/1.2.1.RELEASE/reference/htmlsingle/#production-ready-customizing-management-server-port ), I see that you can configure the port on which the drive works. If I use the built-in tomcat, how is this implemented? Is this creating another Connector or is it launching another tomcat instance together? If this is tomcat, do we have any ideas on how much memory will be required?

-Joshua

0
source share
1 answer

It launches a separate embedded instance of Tomcat. The /metrics endpoint for a Spring boot drive or tool like JConsole will give you some idea of ​​heap usage.

+2
source

Source: https://habr.com/ru/post/985613/


All Articles