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 was also having the same problem, for me following solution worked perfectly fine:
I had annotated my class as @AllArgsConstructor by importing import lombok.AllArgsConstructor
@AllArgsConstructor
import lombok.AllArgsConstructor
I had just removed this annotation and the code starts working.
Hope this may help someone.