spring-framework
spring-framework copied to clipboard
Spring Framework
## Overview Prior to 6.1 M4 we did not have a need for registering resource hints for GraalVM native image for classpath location patterns (i.e., locations containing wildcards (`**`, `*`,...
Sometimes we need extract data from child node instead of root document. For example get index mappings from ElasticSearch: ```java @HttpExchange("http://localhost:9200") public interface ElasticSearchIndexOperations { @GetExchange("/{index}/_mapping") @JsonPointer("/${index}/mappings") Mappings getMapping(@PathVariable String...
According to https://github.com/oracle/graal/issues/7354#issuecomment-1708924781 and other comments, we need to prepare for future changes in the `resource-config.json` format and apply them to our `ResourceHints` API. First, the "exclude pattern" variant is...
With the current WebClient implementation its not possible to get the trailer data of a chunked http response. For example for the response: ``` HTTP/1.1 200 OK Transfer-Encoding: chunked Content-Type:...
It's probably rather early stages, but it would be nice if at some point Spring's web frameworks supported [the HTTP QUERY method](https://www.ietf.org/archive/id/draft-ietf-httpbis-safe-method-w-body-02.html).
Kotest is a Kotlin based testing framework. We execute tests on coroutines, which may (or may not) execute on different threads. As such, the `TestContextManager` created for a certain class...
I'm implementing a REST API with a `ControllerAdvice` and planning to use RFC 9457-compliant error responses. I see what Spring Framework 6+ provides. In Spring 6 documentation I read this:...
When the stop method of a SmartLifecycle bean throws an error, the DefaultLifecycleProcessor always waits until the timeout is hit. Which is unnecessary as no cleanup is performed and delays...
**Affects:** 6.1 RFE: add a section in WebFlux “View Technologies” on how to do `forward:` and `redirect:`. Currently it's not obvious how to handle these schemes with a multitude of...
**Affects:** 6.1.11, 6.2.0-M7 --- When a `ClientAbortException` occurs within a Spring MVC `StreamingResponseBody` sometimes the error handling is not called with the exception thrown by the `StreamingResponseBody`, but for the...