I'm wondering if this is possible and/or recommended.
My use case is I have Project A that stands up on it's own and has all the core features I want. I also have Project B that is including Project A as a dependency. The basePackage of Project B is the same as Project A so it picks up Project A's configuration beans and controllers, etc... This is what I want, but I also want to be able to override configuration or extend the controllers of Project A. I cannot have multiple mappings though and that is what results, obviously. Maybe it's a matter of extending the Project A controller and excluding the extended controller.
Is this common and is there a recommended approach?
I have a feeling I'm missing something fundamental and apologize if this is basic stuff I'm new to Spring.
Thanks in advance!