gpt4 book ai didi

java - 在没有 View 解析器的情况下重定向到 spring-boot-starter-webflux 中的外部绝对 URL

转载 作者:行者123 更新时间:2023-12-02 06:19:00 31 4
gpt4 key购买 nike

我正在使用 spring-webflux 创建一个应用程序。我公开了一个 Controller ,它有一个 react 性方法并返回 Mono 作为返回类型。堆栈是响应式(Reactive)的。请求来自浏览器,API 预计会将浏览器中的用户重定向到基于某些本质上异步的计算的 URL。我现在得到的不是重定向,而是如下所示的响应。

有办法实现吗?

{
"defaultCharset": "UTF-8",
"requestContextAttribute": null,
"beanName": null,
"applicationContext": null,
"url": "https://my.box.com/service/auth/oauth/authorize?client_id=3d58a6ae9da221193d688feb521cf3f78ab8f1e04b3110813798b6feb877aa4d&response_type=code&redirect_uri=https://memini.serveo.net/api/v1/sources/BOX/connection?state=79299a49-e716-4ac5-a4f1-d16a2fdf6de5",
"contextRelative": true,
"statusCode": "SEE_OTHER",
"propagateQuery": false,
"hosts": null,
"redirectView": true,
"supportedMediaTypes": [
{
"type": "text",
"subtype": "html",
"parameters": {
"charset": "UTF-8"
},
"qualityValue": 1,
"wildcardType": false,
"wildcardSubtype": false,
"charset": "UTF-8",
"concrete": true
}
]
}

最佳答案

使用下面的代码让它工作得很好

@GetMapping("/")
Mono<Void> redirect(ServerHttpResponse response) {
response.setStatus(TEMPORARY_REDIRECT);
response.getHeaders().setLocation(URI.create(authorizationUrl));
return response.setComplete();
}

关于java - 在没有 View 解析器的情况下重定向到 spring-boot-starter-webflux 中的外部绝对 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55848688/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com