其他分享
首页 > 其他分享> > springboot跨域问题

springboot跨域问题

作者:互联网

最近遇到一个问题 前端访问一直跨域 然后又是那种单独页面的 后来找到了开启CORS的方法解决

直接在控制器层加上@CrossOrigin注解即可开启CORS

import org.springframework.web.bind.annotation.CrossOrigin
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("base")
public class BudgetInterfaceController {
	@CrossOrigin
	@RequestMapping("baseData")
	public void baseData(Long id, HttpServletResponse response) {
		………
	}
}

标签:web,CrossOrigin,RequestMapping,springframework,问题,跨域,import,org,springboot
来源: https://blog.csdn.net/ZyhMemory/article/details/110880650