前后端分离跨域问题:Access to XMLHttpRequest at http://xxx.xxx from origin ‘http:....
解决前端使用ajax访问后端出现的跨域问题:Access to XMLHttpRequest at http://xxx.xxx from origin ‘http://localhost:8000’ has been bl…//后端Controller添加@CrossOrigin注解@CrossOrigin(origins = "*",maxAge = 3600)@RestControllerp
·
解决前端使用ajax访问后端出现的跨域问题:Access to XMLHttpRequest at http://xxx.xxx from origin ‘http://localhost:8000’ has been bl…
//后端Controller添加@CrossOrigin注解
@CrossOrigin(origins = "*",maxAge = 3600)
@RestController
public class testController {
@GetMapping("/getAction")
public String getAction(){
return "get请求";
}
@PostMapping("/postAction")
public String postAction(){
return "posasdasdasdas-请求";
}
}
解决前端报错
项目是springboot框架,前后端分离,需要跨域,当前前端可以用JSONP解决,但是java端如何解决呢?
因为是springboot框架,所以好多都可以用注解解决问题,所以就用到了@CrossOrigin,这个是解决跨域问题相当好的一种方法,当然还有写个全局配置类,因为我这里只是个别方法需要跨域,所以不用全局配置。
@CrossOrigin只在方法中配置跨域时,只需要在方法名上加上这一注解就行吗,如果是通用所有的ip访问,就再设置(origins = “*”,maxAge = 3600),当然也可以细化具体的ip。
原文链接:https://blog.csdn.net/weixin_41709748/article/details/105738154
更多推荐
已为社区贡献2条内容
所有评论(0)