Juergen Hoeller
Juergen Hoeller
I suppose it would also help to let the `entityManagerFactory` bean or specifically the `dataSource` bean to be declared as dependent on the container bean, enforcing the test container to...
From a quick glance at the `TomcatWebServer` implementation, the `this.tomcat.destroy()` call might have to move to a `DisposableBean.destroy()` method so that `Lifecycle.stop()` only contains the `stopTomcat()` call - which should...
Since we might be using Spring Boot 3.1 for early demos with Project CRaC, it would be great to fix this ASAP for that reason as well. @wilkinsona @bclozel for...
Indeed, `LocalDataSourceJobStore` is meant to be used within a Spring-managed transaction which is why we disable the manual transaction management in Quartz there. If anyone prefers to use standard Quartz...
I don't see the need for a new group of TimeUnit-based accessors and see them as rather confusing next to our existing `getLaskTaskTimeX` and `getTotalTimeX` accessors, in particular if the...
See https://github.com/spring-projects/spring-framework/issues/25803#issuecomment-1668705268 for a summary of the 6.1 revision. This ended up preferring `TimeUnit` based accessors over `Duration` since the `double` precision is rather important here. Note that there is...
This effectively duplicates #31019 and should therefore be addressed as of 6.0.12 / 5.3.30.
So I suppose this can be seen as a documentation ticket on our end now... documenting that Hibernate Validator 8.0 is needed for constraint annotations to be discovered on record...
While we still do not see `@Cacheable` and co as a perfect companion for reactive service methods, we come back to this now from a pragmatic perspective: It is quite...
As mentioned on #30750, the classpath scan finds the nested classes directly rather than through their containing class. As a consequence, it processes them in the order that it found...