栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

使用Spring框架为选项请求启用CORS

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

使用Spring框架为选项请求启用CORS

最后, DispatcheServlet 自定义初始化程序是真正解决我的问题的类。由于我实现了 optionsController
,因此OPTIONS请求失败,这是错误的。

所以我删除了 optionsController ,仅在我的Rest Controller中为OPTIONS请求添加了 handle
方法,就解决了问题:

@CrossOrigin(origins = "*", maxAge = 3600)@RestController@RequestMapping("/users")public class Users {    @RequestMapping( value = "/edit", method = RequestMethod.PUT)    public ResponseEntity<?> create(@RequestBody User user){         ....         ....    }    @RequestMapping( value = "/**", method = RequestMethod.OPTIONS    )    public ResponseEntity handle() {        return new ResponseEntity(HttpStatus.OK);    }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/615710.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号