1. Webconfig
WebConfig.java
public class WebConfig implements WebMvcConfigurer {
@Ovveride
public void addInterceptors() {
List<String> staticResourcesPath = Arrays.stream(StaticResourceLocation.values())
// 기존 패턴 형식에 맞춰주기 위해 값 커스텀 세팅
.flatMap(StaticResourceLocation::getPatterns)
.collect(Collectors.toList());
staticResourcesPath.add("/node_modules/**");
registry.addInterceptor(notificationInterceptor).excludePathPatterns(staticResourcesPath);
}
}
'코딩 > 자바' 카테고리의 다른 글
spring boot Async 참고할 사이트 (0) | 2020.09.18 |
---|---|
queryDsl 프로젝트 세팅하기 (0) | 2020.07.14 |
aws java tomcat nginx 연결 흐름 (0) | 2020.06.21 |
스프링 셀프조인을 하는 이유 (0) | 2020.05.26 |
터미널에서 메이븐 빌드하기 (0) | 2020.04.30 |