Phillip Webb
Phillip Webb
The new jar loader has been around for a while now. I think we can drop spring-boot-loader-classic in 4.0.x
Our initial cut of HTTP Service clients doesn't support automatic classpath scanning and as such `@ImportHttpServices` is always required. We should consider if we want to try and support automatic...
See https://github.com/spring-projects/spring-boot/issues/45218#issuecomment-2898258549 Offering a general purpose property is a little tricky since Logback and Log4J2 have different feature sets.
We should see what breaks if we remove "com.google.code.findbugs:jsr305"
`org.springframework.boot.actuate.health` currently mixes health indicator API and enpoint implementation details. I think it could be worth splitting the package up.
The `OriginLookup` interface has `isImmutable` and `getPrefix` methods that were added to fix a package tangle. They don't really belong in this interface and it would be good to find...
With https://github.com/spring-projects/spring-framework/commit/2a29e1645628448f7752ba4cba66b1bd5f8c3767 we'll need to consider how and when we want to support Jackson 3. Specifically we need to decide if we're to support Jackson 2 and Jackson 3 at...
Documentation for `@ImportHttpServices` hasn't yet been added because we want to get early feedback first.
Early work on HTTP Service clients included the concept of labels and selectors. These are based on the similar concept in Kubernetes and would allow you to apply labels to...