controller 允许跨域访问
Posted lshan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了controller 允许跨域访问相关的知识,希望对你有一定的参考价值。
1.在controller 上加上
@CrossOrigin(origins = {"http://localhost:7777", "http://someserver:8080"})
eg:localhost 意思是允许本地跨域访问
7777:允许访问的端口号
@RestController @RequestMapping("/order") //@CrossOrigin(origins = {"http://localhost:7777", "http://someserver:8080"}) @CrossOrigin(origins = {"http://192.168.18.156:4200"}) public class OrderController { @Autowired private OrderService orderService;
以上是关于controller 允许跨域访问的主要内容,如果未能解决你的问题,请参考以下文章
PHP 允许Ajax跨域访问问题 (Access-Control-Allow-Origin)