@WebMvcTest를 이용한 Controller 테스트 시 Spring Security에 대해서
@WebMvcTest는 컨트롤러 레이어의 테스트를 위한 어노테이션입니다. Using this annotation will disable full auto-configuration and instead apply only configuration relevant to MVC tests (i.e. @Controller, @ControllerAdvice, @JsonComponent, Converter/GenericConverter, Filter, WebMvcConfigurer and HandlerMethodArgumentResolver beans but not @Component, @Service or @Repository beans) 따라서 WebMvcTest는 Spring 전체 컨텍스트를 로드하지 않고 M..
2024.04.21