spring-framework
spring-framework copied to clipboard
Spring Framework
I'm migrating from Spring 3 to Spring 5, I getting the following exception Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springmodules.workflow.jbpm31.LocalJbpmConfigurationFactoryBean]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/springframework/beans/factory/access/BeanFactoryLocator One of...
Motivation ==== I noticed that warn log on bean close faield is not enough for identify root cause in some case. The actual log I received is as follows, ```...
Hi, I ran into an issue with Spring Boot 3.2.2 and CRaC if I want to generate the snapshot using `spring.context.checkpoint=onRefresh`: ``` org.springframework.context.ApplicationContextException: Failed to take CRaC checkpoint on refresh...
### Description A simple demo project, using spring boot+webflux+spring data-r2dbc, stress testing, and some requesters hang for a long time until timeout. I'm not sure which link caused the suspension,but...
With feign it was possible to easily map 404 exceptions to null via the dismiss404 functionality. It seems like, that there is no easy and convenient way to do that...
**Affects:** \spring-jdbc 6.1.2 --- Upgrade from spring-jdbc 6.1.1 to 6.1.2 does not support schema name with underscore, ie 'schema_name'. When execute procedure call. ` SimpleJdbcCall(dataSource) .withSchemaName("schema_name") .withFunctionName("updateName") .declareParameters( SqlParameter("id", Types.VARCHAR),...
We ran into a problem that took us some time to debug and we hope that this could be improved: - AOT processing fails as it cannot create a `DataSource`...
This provides an implementation of a HTTP Handler Adaptor that is coded directly to the Eclipse Jetty core API, bypassing any servlet implementation. Fixes #32035
**Affects:** 5.1 / 6.1 --- ## What This problem arises from the fact the Spring allows to remove the `ReadOnlyHttpHeaders` wrapper without creating a modifiable copy but instead modifies the...
In places where a ConcurrentHashMap was used as a set by wrapping it with Collections.newSetFromMap, switch to just using the set returned by ConcurrentHashMap.newKeySet directly.