diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index 955a169ffc..890ca3a16a 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -507,13 +507,6 @@ Finally, if you need access to web-framework-specific functionality, you can imp Servlet or Spring `@Controller` and `@RestController` endpoints at the cost of them not being available over JMX or when using a different web framework. -TIP: If you add endpoints as a library feature, consider adding a configuration class -annotated with `@ManagementContextConfiguration` to `/META-INF/spring.factories` under the -following key: -`org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration`. If -you do so, and if your users ask for a separate management port or address, the endpoint -moves to a child context with all the other web endpoints. - [[production-ready-endpoints-custom-input]]