@EnableFeignClients does not detect feign bean in multi-module.
Hi, I have discovered issue. In a multi-module Spring Boot project, when @EnableFeignClients is configured in the main application class, it does not detect Feign clients defined in other modules.
// ========== gradle code ============
implementation project(':common-lib')
//================================
In a situation where a module references a library module like common-lib using implementation project(':common-lib'), the beans are not being detected.
However, when explicitly setting the package path in @EnableFeignClients(ex: @EnableFeignClients("org.project")), it successfully scans and registers Feign clients from other modules.
I'm curious whether this is the intended behavior or if it might be an issue.
If this behavior is not intentional, it would be helpful to document it in the related documentation.