project에서 특정 bean을 찾지 못하는 에러 Description: Field loginRepository in com.example.myproject.service.LoginService required a bean of type 'com.example.myproject.repository.LoginRepository' that could not be found. Action: Consider defining a bean of type 'com.example.myproject.repository.LoginRepository' in your configuration. 스프링은 컴포넌트 스캔을 통해 의존 관계를 주입해준다. @Service, @Repository, @Controller 등의 어노테이..