Phillip Webb
Phillip Webb
555132e09646f0381ca732ab48b8579ee0fb5aa3 reverted `BootZipCopyAction` to use `GregorianCalendar`, but I still think this value might change depending on the local timezone. We need to review how we should actually set the date.
Whilst working an issue in `spring-boot-loader` I noticed that `spring-boot-server-tests` didn't appear to pick up the latest code. This might be because the loaded classes are an implicit dependency obtained...
See [this Twitter discussion](https://twitter.com/pbakker/status/1205616456626401281). It would be nice if we could trigger additional debug/warning logs to help track down this kind of problem.
When migrating a project that uses `httpclient` 4 any `TestRestTemplate` that uses detection will drop back to the simple implementation which may silently drop headers. This issue was found when...
See https://bsideup.github.io/posts/local_development_with_testcontainers/. We might be able to automate some of this if devtools is being used.
See #8578 for background We currently have a few places in Spring Boot where we create temporary folders without the ability to opt-out. We should review these for users that...
See https://github.com/spring-projects/spring-framework/issues/28009#issuecomment-1031857962 Rather than recommending that developers call `configurer.configure(listenerFactory, connectionFactory)` then undo the transaction manager with `setTransactionManager(null)` we should offer a version that doesn't set it in the first place.
`MockitoPostProcessor.getExistingBeans` checks the `FactoryBean.OBJECT_TYPE_ATTRIBUTE` on bean definitions but it only does a `String` match. Framework expects a [`Class` or `ResolvableType`](https://github.com/spring-projects/spring-framework/blob/8dbdfb0449f5223e102c090591d38ed956722147/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractBeanFactory.java#L1699)
Our testcontainers support should work with `@RestartScope`. It would be good to document this and have tests.
See https://github.com/spring-projects/spring-boot/issues/35223#issuecomment-1531061583