[SpringBoot]UnsatisfiedDependencyException : Error creating bean with name ~

한땀한땀·2022년 7월 1일
0

Error

목록 보기
2/2

[Error] (Spring Boot) org.springframework.beans.factory.UnsatisfiedDependencyException : Error creating bean with name ~

org.springframework.beans.factory.UnsatisfiedDependencyException : Error creating bean with name ~

  • 해당 오류는 스프링을 실행 시켰을때 종속성이 제대로 정의가 안되어 있어, 빈을 생성하는데 오류가 생긴 오류이다.
//아래와 같이 클래스를 작성하고
//컨트롤러에서 사용할때 해당 클래스가 빈으로 등록되어있지 않을 경우 발생할 수 있다

@Data
@ConfigurationProperties(prefix = "properties")
public class Properties {
    private String key;
}

@Controller
@RequiredArgsConstructor
public class Controller {
    private Properties props;
}
//아래와 같이 빈으로 등록해주면 해결된다.

@Data
@component
@ConfigurationProperties(prefix = "properties")
public class Properties {
    private String key;
}

@Controller
@RequiredArgsConstructor
public class Controller {
    private Properties props;
}

profile
한땀한땀

0개의 댓글