[Solved] org.springframework.beans.factory.UnsatisfiedDependencyException:
[ad_1] When you extend from Repository you have to provide two generics: The type of the model (postJob) The type of the ID (field with @Id) annotation In your case the @Id annotated field is a long, while your repository extends from Repository<postJob, String>. This causes trouble, because now Spring is unable to find a … Read more