Error creating bean with name 'mypageController': Unsatisfied dependency expressed through field 'mypageService'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean found for dependency [com.java.mypage.service.MypageService]: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
에러 발생 원인
Controller에서 빈 객체 생성시 Service에 어노테이션을 설정하지 않아 에러가 발생했다
Service에 @Component 어노테이션을 설정 해 해결했다