zoukankan      html  css  js  c++  java
  • SpringBoot

    前言

    本文介绍如何根据目录结构给RequestMapping添加路由前缀(覆盖RequestMappingHandlerMapping中的getMappingForMethod方法,修改其中的Url),如下图的实际访问路径为:/v1/test/test。

    在这里插入图片描述


    具体实现

    配置文件指定基础包

    • application.properties
    api-package = com.coisini.springbootlearn.controller
    

    自动补全路由前缀处理类

    • AutoPrefixUrlMapping.java
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.web.servlet.mvc.method.RequestMappingInfo;
    import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
    import java.lang.reflect.Method;
    import java.util.Objects;
    
    /**
     * @Description 自动补全路由前缀处理类
     *      RequestMappingHandlerMapping 负责处理标注了@RequestMapping的控制器
     * @author coisini
     * @date Aug 10, 2021
     * @Version 1.0
     */
    public class AutoPrefixUrlMapping extends RequestMappingHandlerMapping {
    
        /**
         * 读取基础包配置
         */
        @Value("${api-package}")
        private String bathApiPackagePath;
    
        /**
         * 重写方法路由获取
         * @param method
         * @param handlerType
         * @return
         */
        @Override
        protected RequestMappingInfo getMappingForMethod(Method method, Class<?> handlerType) {
            RequestMappingInfo mappingInfo = super.getMappingForMethod(method, handlerType);
            if (Objects.nonNull(mappingInfo)) {
                String prefix = this.getPrefix(handlerType);
                /**
                 * RequestMappingInfo.paths(prefix).build() 根据前缀生成mappingInfo
                 * combine(mappingInfo) 拼接原来的mappingInfo
                 */
                return RequestMappingInfo.paths(prefix).build().combine(mappingInfo);
            }
    
            return mappingInfo;
        }
    
        /**
         * 获取方法路由前缀
         * @param handleType
         * @return
         */
        private String getPrefix(Class<?> handleType) {
            String packageName = handleType.getPackage().getName();
            String dotPath = packageName.replace(this.bathApiPackagePath, "").replace(".","/");
            return dotPath;
        }
    
    }
    

    自动补全路由前缀配置类

    • AutoPrefixConfiguration.java
    /**
     * @Description 自动补全路由前缀配置类
     * 通过接口的形式主动发现
     * @author coisini
     * @date Aug 10, 2021
     * @Version 1.0
     */
    @Component
    public class AutoPrefixConfiguration implements WebMvcRegistrations {
        @Override
        public RequestMappingHandlerMapping getRequestMappingHandlerMapping() {
            return new AutoPrefixUrlMapping();
        }
    }
    

    测试类

    @RestController
    @RequestMapping("/test")
    public class TestController {
    
        @GetMapping(value = "/test")
        public String test(){
            return "hello";
        }
    
    }
    

    测试

    • 目录结构如下

    在这里插入图片描述

    • 访问结果

    在这里插入图片描述

    • 目录结构变更

    在这里插入图片描述

    • 访问结果

    在这里插入图片描述

    - End -
    梦想是咸鱼
    关注一下吧
    以上为本篇文章的主要内容,希望大家多提意见,如果喜欢记得点个推荐哦
    作者:Maggieq8324
    本文版权归作者和博客园共有,欢迎转载,转载时保留原作者和文章地址即可。
  • 相关阅读:
    (转)swc使用
    (转)AS3中的反射相关
    AS获取url参数
    (转)深入理解Flash Player的安全域(Security Domains)
    (转)html<embed>标签和url向Flash传flashvars值
    (转)ApplicationDomain
    灰度发布
    (转)flex中使用swc实现更好的界面代码分离
    (转)深入理解Flash Player的应用程序域(Application Domains)
    嵌入式系统可执行文件格式
  • 原文地址:https://www.cnblogs.com/maggieq8324/p/15126269.html
Copyright © 2011-2022 走看看