The full message is
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name \'userRepositoryUserDetailsSe
Annotatate your class implementing UserRepository with spring @Component annotation
UserRepository
@Component
@Component public MyUserRepository implements UserRepository { User findByEmail(String email){ return new User(); } }