Requested bean is currently in creation: Is there an unresolvable circular reference? Requested bean is currently in creation: Is there an unresolvable circular reference? spring spring

Requested bean is currently in creation: Is there an unresolvable circular reference?


I think you could use Spring's

@Lazy

annotation on one of the autowired fields to break circular dependency.

I'm not sure if this works/exists in mentioned Spring version.


Spring uses an special logic for resolving this kind of circular dependencies with singleton beans. But this won't apply to other scopes. There is no elegant way of breaking this circular dependency, but a clumsy option could be this one:

@Component("bean1")@Scope("view")public class Bean1 {    @Autowired    private Bean2 bean2;    @PostConstruct    public void init() {        bean2.setBean1(this);    }}@Component("bean2")@Scope("view")public class Bean2 {    private Bean1 bean1;    public void setBean1(Bean1 bean1) {        this.bean1 = bean1;    }}

Anyway, circular dependencies are usually a symptom of bad design. You would think again if there is some better way of defining your class dependencies.


In my case, I was defining a bean and autowiring it in the constructor of the same class file.

@SpringBootApplicationpublic class MyApplication {    private MyBean myBean;    public MyApplication(MyBean myBean) {        this.myBean = myBean;    }    @Bean    public MyBean myBean() {        return new MyBean();    }}

My solution was to move the bean definition to another class file.

@Configurationpublic CustomConfig {    @Bean    public MyBean myBean() {        return new MyBean();    }}