We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02d3cfa commit f5aeb81Copy full SHA for f5aeb81
spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java
@@ -1748,7 +1748,9 @@ private Object readResolve() {
1748
}
1749
1750
// Lenient fallback: dummy factory in case of original factory not found...
1751
- return new DefaultListableBeanFactory();
+ DefaultListableBeanFactory dummyFactory = new DefaultListableBeanFactory();
1752
+ dummyFactory.serializationId = this.id;
1753
+ return dummyFactory;
1754
1755
1756
0 commit comments