CentOS 7 在tomcat下配置geoserver跨域

Tomcat版本:

CentOS 7 在tomcat下配置geoserver跨域_第1张图片

Geoserver版本:2.15CentOS 7 在tomcat下配置geoserver跨域_第2张图片

 

停止服务:

systemctl stop tomcat

或者直接到tomcat家目录的/bin下执行

./shoutdown.sh

把两个jar包放到tomcat的lib目录下,并不是geoserver的lib下

(jar文件执行百度下载,或者私信联系我)

 

在tomcat的conf/web.xml文件中

在web-app标签中底部新填

vim web.xml

 

   
 

        CORS

        com.thetransactioncompany.cors.CORSFilter

        

            cors.allowOrigin

            *

        

        

            cors.supportedMethods

            GET, POST, HEAD, PUT, DELETE

        

        

            cors.supportedHeaders

            Accept, Origin, X-Requested-With, Content-Type, Last-Modified

        

        

            cors.exposedHeaders

            Set-Cookie

        

        

            cors.supportsCredentials

            true

        

    

    

        CORS

        /*

   


在这段话的上面添加

实例图:CentOS 7 在tomcat下配置geoserver跨域_第3张图片

 

注释.../webapps/geoserver/WEB-INF/web.xml

相关行:

CentOS 7 在tomcat下配置geoserver跨域_第4张图片

CentOS 7 在tomcat下配置geoserver跨域_第5张图片

 

启动tomcat,完成

 

 

你可能感兴趣的:(geoserver)