greetings all sometime in my app the logic forces me to use circular reference and i want to know how to enable this configuration in spring ?
Spring has no problems with circular references. BeanA can be wired with BeanB, and vice versa. You only get problems with circular references if you introduce them yourself in your code.
BeanA
BeanB
If you have a specific issue, please elaborate.