본문 바로가기

Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Archives
Total
Today
Yesterday
관리 메뉴

org.springframework.beans.factory.BeanCreationException 본문

카테고리 없음

org.springframework.beans.factory.BeanCreationException

잠이올때마다 2019. 4. 26. 10:05

org.springframework.beans.factory.BeanCreationException

 

[Spring] org.springframework.beans.factory.BeanCreationException 에러

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userController': Injection of autowired dependencies failed ※ 에러이유 : 빈 생성시 예외가 발생함 userControll..

jobc.tistory.com

※ 에러이유 :

빈 생성시 예외가 발생함

userController에서 객체 주입을 받지 못함

 

※ 해결 :

Controller에서 사용하는 Service객체에 @Service 애노테이션을 명시해주지 않아서 발생함

객체로 등록되지 않은 빈을 컨트롤러에서 사용

Service객체에 @Service 애노테이션을 명시해줌으로써 해결

Comments