spring-framework
spring-framework copied to clipboard
Spring Framework
## Overview Over the past few weeks it has become apparent that our test suite does not fully cover all features of the Bean Override support in the TestContext framework....
Our new `JettyCoreHttpHandlerAdapter` for Jetty 12 supersedes the Servlet bridge for Jetty in general. That aside, as of Servlet 6.1, there is `ByteBuffer` support in `ServletInputStream`/`ServletOutputStream` out of the box;...
As of Servlet 6.1, there is `ByteBuffer` support in `ServletInputStream`/`ServletOutputStream` which can be used in `ServletHttpHandlerAdapter` and inherited by `TomcatHttpHandlerAdapter`.
As seen in #33722, `SseEmitter` does not currently provide a way to perform assertions on published events for testing purposes. Our own testing infrastructure is leveraging protected methods to configure...
Our server-specific WebSocket RequestUpgradeStrategy implementations are effectively legacy already when running on Jakarta WebSocket 2.1 (Jakarta EE 10). As of Spring Framework 7.0, they can be dropped completely due to...
Support for wildfly delegating transformer is broken since wildfly-core 19 https://github.com/wildfly/wildfly-core/commit/c0d775692adbed37724d6f4ce22a6dc900c0e69d Spring class org.springframework.instrument.classloading.jboss.JBossLoadTimeWeaver expects to load class org.jboss.as.server.deployment.module.DelegatingClassFileTransformer. However, this class has been renamed to org.jboss.as.server.deployment.module.DelegatingClassTransformer in wildfly-server 19.0.0....
We'd like to support something like this: ```java @MockitoSpyBean ProxiedBean service; ``` `ProxiedBean` would then provide accessors for the bean both with and without all of its Spring proxies. This...
Given the following application and test classes, the `@Nested` test class fails due to `getMessage()` returning `"Hello!"` instead of `"Mocked!"` resulting from the fact that the static nested `@TestConfiguration` class...