gpt4 book ai didi

spring - 如何在spring webflux中重定向请求?

转载 作者:行者123 更新时间:2023-12-03 23:56:14 27 4
gpt4 key购买 nike

如何在 Spring WebFlux 中创建重定向休息 Web 服务? WebFlux 中似乎还没有重定向功能!

我想要这样的东西:

 @Bean
RouterFunction<ServerResponse> monoRouterFunction() {
return
route(GET("/redirect/{id}"),{
req -> req.Redirect( fetchAUrlFromDataBase() )
})

最佳答案

@Bean
RouterFunction<ServerResponse> routerFunction() {
route(GET("/redirect"), { req ->
ServerResponse.temporaryRedirect(URI.create(TargetUrl))
.build()
}
})

}

非常感谢约翰马格努森

关于spring - 如何在spring webflux中重定向请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50502377/

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