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

```yaml first: second: i,like,fish ``` the yaml config above can be processed when following code is executed ```java List values = environment.getProperty("key", (List) List.class) ``` however, following yaml config cannot...

status: waiting-for-triage
in: core

When the same mock declaration (via `@MockitoBean`) is indirectly referenced through multiple meta-annotation paths on a test class, Spring's `BeanOverrideContextCustomizerFactory` reports a `Duplicate BeanOverrideHandler` exception. The framework treats the two...

status: waiting-for-triage
in: test

## spring version: 6.2.10 two circular reference: ```java @Component @Order(1) public class TestA { @Autowired private TestB testB; private String name; // get and set public String hello () {...

status: waiting-for-triage
in: core

Use List instead of MultiValueMap in HierarchicalUriComponents to record query params

status: waiting-for-triage
in: web

During testing and setting up I noticed a wierd bug. Namely if a test class extends some base test class, which has a `@ContextHierarchy` annotation applied, then the subclass can...

status: waiting-for-triage
in: test

fixes #24844

status: waiting-for-triage
in: core

The **RestClient** is great. However, its error handling design is currently limited to side effect style callbacks through `.onStatus(...)`, where the typical behavior is to throw exceptions. 😬 In many...

status: waiting-for-triage
in: web

### Problem Array GET parameter using `[]` suffix is not work on Spring WebMVC . * using GET method * using ModelAttribute to resolve handler method argument * using `[]`...

status: waiting-for-triage
in: web

## Summary Spring Web's `UriComponents` and `UriComponentsBuilder` have fundamental design issues that make them non-compliant with RFC 3986 and cause information loss. I'm willing to work on a PR to...

status: waiting-for-triage
in: web
status: feedback-provided

## Problem Statement It can be tedious to fix all of the deprecation warnings you get from using `json(jsonContent, strict = true)`. It's not as easy as a find-and-replace, because...

status: waiting-for-triage
in: test