美文网首页
SpringMVC CORS跨域配置

SpringMVC CORS跨域配置

作者: 以为是书生 | 来源:发表于2017-11-27 16:07 被阅读50次

Spring 4.2 以上的版本支持cors 跨域配置,
此处只讲 在xml文件中的配置:

<!-- API 接口跨域配置 -->
<mvc:cors>
    <mvc:mapping path="/**"
                 allowed-origins="*"
                 allowed-methods="POST, GET, OPTIONS, DELETE, PUT"
                 allowed-headers="Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With"
                 allow-credentials="true" />
</mvc:cors>

path:访问的接口,根据自己需要来改,
allowed-origins:允许跨域的地址,*代表所有的地址都可以,如果是特定的地址,就可以加在这里
例如:只允许http://demo.com 访问

直接这样写allowed-origins="http://demo.com"

相关文章

网友评论

      本文标题:SpringMVC CORS跨域配置

      本文链接:https://www.haomeiwen.com/subject/zesdbxtx.html