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

Spring Framework

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

**Affects:** 5.1.9.RELEASE During singleton creation, `DefaultSingletonBeanRegistry` synchronises on `this.singletonObjects`: https://github.com/spring-projects/spring-framework/blob/b1171d82967cfd374f0b08f9580fe662fa1a98e8/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultSingletonBeanRegistry.java#L204 While synchronized, it then uses the `singletonFactory` to create the singleton: https://github.com/spring-projects/spring-framework/blob/b1171d82967cfd374f0b08f9580fe662fa1a98e8/spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultSingletonBeanRegistry.java#L222 This call into user code while holding a...

status: waiting-for-triage
in: core

After a spring boot websocket client connects to the websocket spring boot server, the server send some heartbeats, and then after some minutes in the trace logs shows "Connection to...

status: waiting-for-triage
in: web

**Affects:** spring-webflux : 5.3.23 Spring Boot: 2.7.5 netty : 4.1.84.Final reactor-netty-core : 1.0.22 Java VM : OpenJDK 64-Bit Server VM Java VM version : [17.0.4.1+1-LTS]([url](url)) **Requirement** : Response with the...

status: waiting-for-triage

Remove APIs that have been "deprecated for removal in 6.1". ## Candidates - methods in `org.springframework.util.Assert` - `org.springframework.test.web.reactive.server.ExchangeResult.getRawStatusCode()` - `org.springframework.http.HttpMethod.resolve(String)` - `org.springframework.http.HttpRequest.getMethodValue()` - `org.springframework.http.client.HttpComponentsClientHttpRequestFactory.setReadTimeout(int)` - `org.springframework.http.client.reactive.ClientHttpResponse.getRawStatusCode()` - `org.springframework.http.codec.multipart.DefaultPartHttpMessageReader.setStreaming(boolean)` - constructors...

**Affects:** main The way to confirm: Modify two lines in `CookieIntegrationTests` and the test will fail. ```java @ParameterizedHttpServerTest public void basicTest(HttpServer httpServer) throws Exception { startServer(httpServer); URI url = new...

status: waiting-for-triage
in: web

Many databases now support `UPDATE/INSERT/DELETE ... RETURNING *` which enables a single database request to apply and return in a single database call, this allows the caller to see the...

status: waiting-for-triage

**Affects:** 6.0.0-SNAPSHOT If micrometer-observation is set-up and if I throw an exception from a controller: ```java @GetMapping("/trouble") String trouble() { LOGGER.info("3,2,1... Boom!"); throw new IllegalArgumentException("Noooooo!"); } ``` The `ERROR` log...

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

Fix #29418 Adds an `obtainTransactionalConnectionEagerly` flag allowing to retrieve the underlying connection during `getConnection` call. I think this flag should be always true to make sure the effective connection is...

status: waiting-for-triage

**Affects:** 5.3.22 I have a `DataSource` of type `TransactionAwareDataSourceProxy` . My `PlatformTransactionManager` is `JpaTransactionManager`. I have the following tests: ```java @SpringBootTest class DataSourceTest { @Inject private PlatformTransactionManager transactionManager; @Inject private...

status: waiting-for-triage

springframework.version 5.3.21 jdk.version 17 old [issues](https://github.com/spring-projects/spring-framework/issues/28530) I find this error still happening that is fault way to use? public static void main(String[] args) { BeanCopier beanCopier = BeanCopier.create(A.class, B.class, false);...

status: waiting-for-triage