DEV Community

Gilbert Ngeno
Gilbert Ngeno

Posted on

Answer: UnsatisfiedDependencyException: Error creating bean with name

The ClientRepository should be annotated with @Repository tag With your current configuration Spring will not scan the class and have knowledge about it. At the moment of booting and wiring will not find the ClientRepository class.

EDIT If adding the @Repository tag doesn't help, then I think that the problem…

Top comments (0)