If I include spring-boot-starter-actuator there is no way for me to disable the discovery page (/actuator).
I would like to utilize other features of the actuator, such as metrics, but I do not want to be forced into exposing this endpoint.
I can disable all other endpoints with the following:
management:
endpoints:
enabled-by-default: false
I would think this would also disable the /actuator endpoint.