I am working on spring batch with spring boot 2.X application, actually its existing code i am checked out from git. While running the application it fails due to below error on
I had the same error but the error was generated by Feign Client. If you have this error using feign client you must add @EnableFeignClients on your main class:
@SpringCloudApplication
@EnableFeignClients
public class Application {
...
}