enable cors on apache tomcat

Solutions on MaxInterview for enable cors on apache tomcat by the best coders in the world

showing results for - "enable cors on apache tomcat"
Sol
24 Jan 2020
1<filter>
2    <filter-name>CorsFilter</filter-name>
3    <filter-class>org.apache.catalina.filters.CorsFilter</filter-class>
4</filter>
5<filter-mapping>
6    <filter-name>CorsFilter</filter-name>
7    <url-pattern> /* </url-pattern>
8</filter-mapping>
9
similar questions
queries leading to this page
enable cors on apache tomcat