I am having trouble auto wiring a feign client from another project. It appears that the implementation of the feign client is not being generated and injected.
My main class was in package "com.abc.myservicename" and my main class name was "myservicename.java". I was using @SpringBootApplication(scanBasePackages="com.abc") annotation in my main class.
Changing the main class package name to "com.abc" has resolved the issue for me.