728x90
반응형
현상
스프링 프레임워크로 웹 기반 백엔드 시스템을 배포 중에 운영 환경에서 정적 리소스에 CORS 필터가 적용되지 않는 것을 확인하였다. 스프링 프레임워크로 개발한 프로그램을 톰캣에 탑재하여 배포하는 경우에 정적 리소스는 작성한 CORS 필터를 거치지 않기 때문에 발생한 이슈였다.
해결 방법
톰캣의 web.xml에 아래와 같이 CORS 필터를 설정하면 정적 리소스에도 CORS 필터가 동작한다.
<filter>
<filter-name>corsFilter</filter-name>
<filter-class>org.apache.catalina.filters.CorsFilter</filter-class>
<init-param>
<param-name>cors.allowed.origins</param-name>
<param-value>*</param-value>
</init-param>
<init-param>
<param-name>cors.allowed.methods</param-name>
<param-value>GET,POST,PUT,DELETE</param-value>
</init-param>
<init-param>
<param-name>cors.allowed.headers</param-name>
<param-value>*</param-value>
</init-param>
<init-param>
<param-name>cors.support.credentials</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>cors.preflight.maxage</param-name>
<param-value>3600</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>corsFilter</filter-name>
<url-pattern>*</url-pattern>
</filter-mapping>
참고문서
- "Tomcat8.5 + SpringBoot CORS 문제 해결", 오늘의개발부, 2021년 9월 10일. @원문보기
- "How to enable CORS tomcat 8.5 filter to access static files?", domenico, 스택오버플로우, 2019년 5월 31일. @원문보기
728x90
반응형
'WAS(Web Application Server) > 톰캣(Tomcat)' 카테고리의 다른 글
톰캣 가상 호스트 컨텍스트 설정 (0) | 2024.10.10 |
---|---|
톰캣과 OpenSSL 버전 호환 이슈 "org.apache.tomcat.jni.Error: 70023" (0) | 2024.06.10 |
[톰캣 9] HTTPS 호스트 설정 (0) | 2024.06.07 |
[톰캣 9] HTTP/2 프로토콜을 사용하도록 설정 (0) | 2024.05.27 |
[톰캣 9] "The APR based Apache Tomcat Native library was not found" 메시지 해결 (0) | 2024.05.20 |
댓글