Co-Authored-By: Claude Sonnet 5 <[email protected]> Claude-Session: https://claude.ai/code/session_01JoVmf2fWvcpoXndcDSwRf7
13 lines
735 B
Plaintext
13 lines
735 B
Plaintext
# DefaultSingletonBeanRegistry: the fields that hold early references, read with javap
|
|
# jar: spring-beans-7.0.9.jar
|
|
|
|
private final java.util.Map<java.lang.String, java.lang.Object> singletonObjects;
|
|
private final java.util.Map<java.lang.String, org.springframework.beans.factory.ObjectFactory<?>> singletonFactories;
|
|
private final java.util.Map<java.lang.String, java.lang.Object> earlySingletonObjects;
|
|
private final java.util.Set<java.lang.String> singletonsCurrentlyInCreation;
|
|
|
|
# DefaultListableBeanFactory / AbstractAutowireCapableBeanFactory: the allow-circular-references switch
|
|
private boolean allowCircularReferences;
|
|
public void setAllowCircularReferences(boolean);
|
|
public boolean isAllowCircularReferences();
|