스프링 테스트에서 @Autowired
어노테이션을 달아줘야만 객체 주입이 되는 이유를 설명해주세요.
#225
Replies: 2 comments
-
SpringApplication의 경우 Bean을 주입해주는 역할을 스프링이 담당한다. 하지만 테스트의 경우 JUnit에 의해 객체를 주입하게 된다. 이 때 JUnit은 ParameterResolver를 사용해서 주입을 한다. Parameter Resolver는 테스트에 동적으로 parameter를 주입할 수 있도록 JUnit에서 제공하는 인터페이스이다. 사용하려면
Junit에서 |
Beta Was this translation helpful? Give feedback.
-
와 진짜 참고자료가 윗 코멘트와 동일해서 더 달 말이 없습니다. |
Beta Was this translation helpful? Give feedback.
-
.
Beta Was this translation helpful? Give feedback.
All reactions