码迷,mamicode.com
首页 > Web开发 > 详细

处理webflux 项目 增加 content-path

时间:2021-05-24 01:52:31      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:基于   release   lan   star   start   content   path   with   bean   

需求: 增加路由前缀
项目: 基于webflux 的 r2dbc 建立的 mqtt项目

解决方案: 一

# springboot 项目
# 版本 >=2.3.release
spring:
  webflux:
    base-path: "/project-name"

解决方案: 二

server:
  servlet:
    context-path: "/project-name"
@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);
    };
}

处理webflux 项目 增加 content-path

标签:基于   release   lan   star   start   content   path   with   bean   

原文地址:https://www.cnblogs.com/akashicbrother/p/14744846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!