1018 spring security

ignoring()

예를 들어 favicon 같은 스태틱한 리소스인 경우는 시큐리티 필터를 타게할 필요가 없다.

favicon을 보여주는데 무슨 인증이 필요하겠나?

하지만 별도의 설정이 없다면 favicon 요청마저 시큐리티 필터들을 타게되고, 그만큼의 자원이 낭비된다.

이런 경우 시큐리티필터를 안타게하려면 어떻게 해야할까?

SecurityConfig.java

@Override
public void configure(WebSecurity web) throws Exception {
  web.ignoring().mvcMatchers("/favicon.ico")
}

부트 쓸 경우

SecurityConfig.java

@Override
public void configure(WebSecurity web) throws Exception {
  web.ignoring().requestMatchers(PathRequest.toStaticResource().atCommonLocations());
}

이외에도 다양한 메소드들이 있으니 살펴볼 것.

ignoring() 적용 전


파비콘이 필터를 타는 것을 볼 수 있다.

ignoring() 적용 후


파비콘이 필터를 타지 않는 것을 볼 수 있다.

'JAVA > SPRING' 카테고리의 다른 글

@PathVariable  (0) 2019.10.20
@RequestMapping의 value 패턴.  (0) 2019.10.19
[SPRING MVC] Formatter  (2) 2019.10.14
[SPRING SECURITY] 1012 공부(아키텍쳐 마지막 정리.)  (2) 2019.10.12
[SPRING SECURITY] 1011 공부(SecurityContextHolder)  (0) 2019.10.12

+ Recent posts