多平台统一管理软件接口,如何实现多平台统一管理软件接口
283
2023-02-27
spring4.3 实现跨域CORS的方法
首先交代一下,我的jdk是1.8tomcat是8.0,我的项目是ssm+maven。
spring的框架是4.3.在使用的时候,只需要在controller的@controller注解之前注解@CrossOrigin,然后在springmvc.xml的配置文件添加
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context" xmlns:mvc="http://springframework.org/schema/mvc" xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/sprinsluqNehg-beans.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd http://springframework.org/schema/mvc http://springframework.org/schema/mvc/spring-mvc.xsd"> //与此次操作无关的配置都省略了 allowed-origins="" allowed-methods="POST,GET,OPTIONS,DELETE,PUT" //header里面userName与passWord是由于项目的需要我自定义的请求头的内容。 allowed-headers="Origin,X-Mx-ReqToken,x-requested-http://with,userName,passWord,Authorization,Accept,content-type" allow-credentials="true"/>
xmlns:xsi="http://w3.org/2001/XMLSchema-instance"
xmlns:context="http://springframework.org/schema/context"
xmlns:mvc="http://springframework.org/schema/mvc"
xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/sprinsluqNehg-beans.xsd
http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd
http://springframework.org/schema/mvc http://springframework.org/schema/mvc/spring-mvc.xsd">
//与此次操作无关的配置都省略了
allowed-origins="" allowed-methods="POST,GET,OPTIONS,DELETE,PUT" //header里面userName与passWord是由于项目的需要我自定义的请求头的内容。 allowed-headers="Origin,X-Mx-ReqToken,x-requested-http://with,userName,passWord,Authorization,Accept,content-type" allow-credentials="true"/>
allowed-origins=""
allowed-methods="POST,GET,OPTIONS,DELETE,PUT"
//header里面userName与passWord是由于项目的需要我自定义的请求头的内容。
allowed-headers="Origin,X-Mx-ReqToken,x-requested-http://with,userName,passWord,Authorization,Accept,content-type"
allow-credentials="true"/>
这里是controller层添加注解的截图
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~