Let's say I have following classes
.../RabbitController
.../test/SomeController
springfox, without any swagger annotations, works fine.
rabbit-controller
some-controller
When I add another class
.../RabbitController
.../test/SomeController
.../test/RabbitController
An error comes out,
Annotation-specified bean name 'rabbitController'
for bean class [...RabbitController]
conflicts with existing,
non-compatible bean definition of same name and class
[.....test.RabbitController]
Is there any way to make springfox be aware of the hierarchy of the class so that I get something like
rabbit-controller
test-some-controller
test-rabbit-controller
?