반응형
@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {
@Autowired
HandlerInterceptor yourInjectedInterceptor;
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(...)
...
registry.addInterceptor(getYourInterceptor());
registry.addInterceptor(yourInjectedInterceptor);
// next two should be avoid -- tightly coupled and not very testable
registry.addInterceptor(new YourInterceptor());
registry.addInterceptor(new HandlerInterceptor() {
...
});
}
}
728x90
반응형
'웹 개발' 카테고리의 다른 글
spring boot] URL에서 jsessionid 제거 (1) | 2020.12.20 |
---|---|
Spring boot] json 형식으로 return 시, date format (0) | 2020.12.13 |
Spring boot에서 JSON API에 XSS Filter 적용하기 (6) | 2020.12.12 |
log4j로 printStackTrace 출력 (0) | 2020.12.12 |
eclipse] maven build 시 test를 빼는 방법 (0) | 2020.12.06 |