A Spring Boot application experiences 'BeanCurrentlyInCreationException' at startup. What is the most common root cause?
-
A
Missing @Autowired annotation on a required dependency
-
B
A circular dependency where Bean A depends on Bean B and Bean B depends on Bean A
-
C
Two beans with the same name defined in different @Configuration classes
-
D
A @Lazy bean being injected into an eager singleton