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 567fcc4 commit 37a50d7Copy full SHA for 37a50d7
spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java
@@ -1610,7 +1610,9 @@ private Object readResolve() {
1610
}
1611
1612
// Lenient fallback: dummy factory in case of original factory not found...
1613
- return new DefaultListableBeanFactory();
+ DefaultListableBeanFactory dummyFactory = new DefaultListableBeanFactory();
1614
+ dummyFactory.serializationId = this.id;
1615
+ return dummyFactory;
1616
1617
1618
0 commit comments