Phillip Webb
Phillip Webb
For a workaround you could your write your own `WebServerFactoryCustomizer` ordered above ours that removes the default `AccessLogValve` from `getEngineValves` and replaces it with subclass that overrides `setPrefix` but doesn't...
I have a possible solution to this at https://github.com/philwebb/spring-boot/tree/gh-35253, but it feels risky for a bug fix. Especially since adding `@AutoConfigureTestDatabase(replace=Replace.NONE)` is a pretty easy workaround. I'm also not totally...
@asaikali might have some sample code that shows common things that need to be configured for SSL
@patpatpat123 I've opened #35155
I've opened #17589 for us to consider more broadly how we should support SSL.
I believe we intentionally set `ignoreUnresolvablePlaceholders` to `true` to keep back compatibility with previous releases. I agree it would be nice to have a fail fast option.
See also #8693 and #13202
@mbhave also tracked down some internal discussion we had about this last time around: From @wilkinsona > Is it by design that the 2.0 binder doesn’t ignore placeholder resolution failures?...
I think we intentionally rolled this back in 2.0 because the major upgrade was quite onerous already and we didn't want to add more friction.
@tavin I'm afraid that only works for `@Value` annotations. We need to process `application.properties` before any `@Bean` definitions are loaded.