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 abacc6d commit 22f4b1cCopy full SHA for 22f4b1c
spring-beans/src/main/java/org/springframework/beans/factory/support/DefaultListableBeanFactory.java
@@ -1574,7 +1574,9 @@ private Object readResolve() {
1574
}
1575
1576
// Lenient fallback: dummy factory in case of original factory not found...
1577
- return new DefaultListableBeanFactory();
+ DefaultListableBeanFactory dummyFactory = new DefaultListableBeanFactory();
1578
+ dummyFactory.serializationId = this.id;
1579
+ return dummyFactory;
1580
1581
1582
0 commit comments