Add core-di: constructor vs setter vs field injection and @Autowired candidate resolution on Boot 4.1

Co-Authored-By: Claude Sonnet 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01JoVmf2fWvcpoXndcDSwRf7
This commit is contained in:
Claude
2026-09-24 04:59:40 +00:00
parent b0c39a8d4c
commit 9825efa081
87 changed files with 1945 additions and 0 deletions
@@ -0,0 +1,12 @@
# 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();