标签:public 配置网关 http 就会 跨域 service control pre 问题
当通过一个地址去访问另一个地址的过程中,有三个地方的任何一个不一样就会存在跨域问题,前后端交互的项目经常遇到跨域问题。
本项目前端: http://localhost:9528/
? 后端: http://localhost:8989/
端口号不一致存在跨域问题
@CrossOrigin
@RestController
@RequestMapping("eduservice/user")
@CrossOrigin //解决跨域问题
public class EduLoginController {
标签:public 配置网关 http 就会 跨域 service control pre 问题
原文地址:https://www.cnblogs.com/silloutte/p/14397369.html