gpt4 book ai didi

spring-webflux - Webflux的上下文路径

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

我一直在尝试找到一种为webflux应用程序设置上下文路径的方法。我知道我可以使用配置

server.servlet.context-path


如果我部署了servlet,但是我想用webflux实现它,而不必显式地将路径添加到每个路由或使用MVC。

最佳答案

您可以使用Web过滤器使WebFlux支持contextPath

@Bean
public WebFilter contextPathWebFilter() {
String contextPath = serverProperties.getServlet().getContextPath();
return (exchange, chain) -> {
ServerHttpRequest request = exchange.getRequest();
if (request.getURI().getPath().startsWith(contextPath)) {
return chain.filter(
exchange.mutate()
.request(request.mutate().contextPath(contextPath).build())
.build());
}
return chain.filter(exchange);
};
}

关于spring-webflux - Webflux的上下文路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49196368/

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