올바른 Spring bean(예: @Component, @Service 등)이 아닌 클래스에 삽입되거나 오토와이어링된 필드/메서드를 보고합니다

예:


public class FooBeanClass {
  @Autowired   // '올바른 Spring bean(@Component, @Service 등)에서 오토와이어링된 멤버를 정의해야 합니다'라고 보고됩니다
  ServiceBean bean;
  }