How can we resolve a Maven cyclic dependency?
Suppose A is the parent project and B and C are child projects. If B is dependent on C and C is dependent on B, is ther
I will introduce the way how I fixed those issues of circular dependencies.
I have two modules that includes each other. I removed dependencies on each side and setup RabbitMQ messaging system and create direct exchange. So when I need something from module1 I send message to RabbitMQ and get response and process data from module2. I think this is the better way of integrating components and it's loose integration.