I\'m trying configure an application in Spring Boot with two differents ports, but I haven\'t got still. My first aproximation has been with two controllers and I have defi
To change Actuator management port you can use property
management.port=8081
See full list of properties here
Update: Actuator creates one more Embedded Tomcat(servlet container) instance in this case. See here and here