spring引导重定向到外部uri导致cors错误

a11xaf1n  于 2021-07-13  发布在  Java
关注(0)|答案(0)|浏览(198)

下面添加了rest处理程序,但其在重定向时在浏览器上出现cors错误,有解决方案吗?。

@RequestMapping("/to-be-redirected")
public ResponseEntity<Object> redirectToExternalUrl() throws URISyntaxException {
    URI yahoo = new URI("http://www.yahoo.com");
    HttpHeaders httpHeaders = new HttpHeaders();
    httpHeaders.setLocation(yahoo);
    return new ResponseEntity<>(httpHeaders, HttpStatus.SEE_OTHER);
}

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题