spring-framework icon indicating copy to clipboard operation
spring-framework copied to clipboard

Spring Framework

Results 875 spring-framework issues
Sort by recently updated
recently updated
newest added

## 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....

in: test
type: task

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;...

in: web
type: task

As of Servlet 6.1, there is `ByteBuffer` support in `ServletInputStream`/`ServletOutputStream` which can be used in `ServletHttpHandlerAdapter` and inherited by `TomcatHttpHandlerAdapter`.

in: web
type: dependency-upgrade

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...

in: web
type: enhancement

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...

in: web
type: task

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....

in: core
type: enhancement

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...

in: test
type: enhancement
status: pending-design-work

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...

in: test
type: bug