Phillip Webb
Phillip Webb
Thanks very much @lmartelli, I've taken the tests from this commit and merged them into 2.7 along with a [minimal fix](https://github.com/spring-projects/spring-boot/commit/5d0640a35636368d149ea35b3e3c7017f1ddab5d). I've also taken the changes you made to `ImportsContextCustomizer`...
@snicoll Do you have a sample project available that produces the warning?
> Regardless, the issue is not really about the warning, but about the fact that, if I am not mistaken, AP (at least with Maven) are invoked by the AOT...
After some more discussion with @snicoll things have become a bit clearer. We're not looking to disable annotation processing of user code, rather we'd want to make a change to...
I think we'd need some changes to `org.springframework.boot.web.client.ClientHttpRequestFactories` to be able to support this and I'm not sure how to do that in a generic fashion. We currently have static...
We're going to add a `NOTE:` to the documentation
Thanks @peacemaker123456. We'll use this issue for the documentation updates and I've opened https://github.com/spring-projects/spring-framework/issues/32251 to see if Framework want to make changes to `ConcurrencyThrottleSupport`
@AndreynRosa Thanks for the offer of help. We occasionally hang out on gitter.im, but I'm more likely to see things in GitHub. Although this one is documentation, it's a little...
This is a little confusing, but what's happening here is when you declare the following: ```properties management.endpoint.health.group.readiness.additional-path=server:/readyz management.endpoint.health.group.liveness.additional-path=server:/livez ``` Spring Boot is creating two new groups called `readiness` and `liveness`...
Flagging for a team discussion since I wonder if we should do more to improve things. Perhaps if `management.endpoint.health.probes.enabled=true` is set and `management.endpoint.health.group.liveness` doesn't change the include or exclude we...