wilkinsona on main
Upgrade to Spring REST Docs 3.0… (compare)
Endpoint
which is removed from exposure.exclude and added into exposure.include in a BeanPostProcessor. Now that I'm moving away from @ConditionalOnEnabledEndpoint
to @ConditionalOnAvailableEndpoint
it's returning 404 and is not actually exposed. I guess available endpoint is the combination of enabled and exposed. With @ConditionalOnEnabledEndpoint
it works fine, so I assume it's enabled. It's also exposed in the BeanPostProcessor. My guess of the problem is that by the time of Condition is evaluated, the bean processor has not exposed it. But how to solve this problem? FYI, this is in an internal spring-boot library.
@Endpoint
s. When I expose it in the properties file in tests, it works fine as those properties are resolved and evaluated before AutoConfiguration
decides with @ConditionalOnAvailableEndpoint
, however, I want to avoid forcing everyone to manually put some configs, and rather I expose it programmatically