spring-framework
spring-framework copied to clipboard
Spring Framework
During profiling of our application, we noticed a potential memory leak. We had a `SimpleJdbcCall` object as a field in a DAO. Typically, we would create and initialize this object...
I try send request via RestClient: ``` fun uploadFile(file: MultipartFile): MyDtoRs { val resource: Resource = file.resource val parts = LinkedMultiValueMap() parts.add("file", resource) val httpHeaders = HttpHeaders() httpHeaders.contentType = MediaType.MULTIPART_FORM_DATA...
**Affects:** 6.1.13 --- Transaction synchronization mechanism works incorrectly when used with nested (in terms of invocation) transactions controlled by multiple transaction managers. Assume having service like this: ```kotlin class ServiceImpl(...
I have just found a problem hard to diagnose that is giving challenge to IT resources. ## Short summary When running Spring Boot tests in JUnit, under certain circumstances, an...
https://github.com/spring-projects/spring-framework/issues/32249#issue-2130887143 The solution is here seems like haven't been fixed yet. Hi, even though we have a heartbeat, some connections don't close when we have too many subscriptions at the...
Update `PathMatchingResourcePatternResolver` so that in addition to searching the `java.class.path` system property for classpath enties, it also searches the `MANIFEST.MF` files from within those jars. Prior to this commit, the...
This PR fixes a bug in `org.springframework.http.HttpHeaders` class. It was not possible to delete/clear the `Host` header before this fix. This bug was first introduced in this commit (in 2018):...
Fix the issue in MappingJackson2MessageConverter where deserialization returns null values for POJOs that do not have ```@JsonView``` annotations When a POJO does not have the JsonView annotation set, and Jackson's...
**Affects:** 6.1.12 (and AFAIK all previous Spring versions) --- ### What I'm trying to do: I'm trying to override the default naming behavior for Spring Beans. I want all beans...