zoukankan      html  css  js  c++  java
  • spring boot 根据目录结构自动生成路由前缀

    1.

    .新建一个类 继承 RequestMappingHandlerMapping

    重写 getMappingForMethod 方法

    package com.boot.missyou.core.hack;
    
    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;
    
    public class AutpPrefixMapping extends RequestMappingHandlerMapping {
        @Value("${missyou.api-package}")
        private String  packagePath;
    
    
        @Override
        protected RequestMappingInfo getMappingForMethod(Method method, Class<?> handlerType) {
          RequestMappingInfo reinfo =  super.getMappingForMethod(method, handlerType);
          if (reinfo!=null) {
              String prefix = this.getPrefix(handlerType);
    // 替换并且合并为新路径 RequestMappingInfo newrequestMappingInfo
    =RequestMappingInfo.paths(prefix).build().combine(reinfo); return newrequestMappingInfo; } return reinfo; }
    // 获取前缀
    public String getPrefix(Class<?> handlerType) { String packName = handlerType.getPackage().getName(); String doPath = packName.replaceAll(this.packagePath, ""); return doPath.replace(".","/"); } }

    2.重新一个类让容器发现    AutpPrefixMapping 类

    采用  

    @Component  + 继承 WebMvcRegistrations

    package com.boot.missyou.core.congiguration;
    
    import com.boot.missyou.core.hack.AutpPrefixMapping;
    import org.springframework.boot.autoconfigure.web.servlet.WebMvcRegistrations;
    import org.springframework.stereotype.Component;
    import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
    @Component
    public class AutoPrefixConfigration implements WebMvcRegistrations {
    
        @Override
        public RequestMappingHandlerMapping getRequestMappingHandlerMapping() {
            return  new AutpPrefixMapping();
        }
    }

    3. 添加配置  属性

     application.properties

    missyou.api-package = com.boot.missyou.api

    为了 可以在类中访问到 

    4.添加 controller  

    package com.boot.missyou.api.v1;
    import com.boot.missyou.exception.http.ForbiddenException;
    import com.boot.missyou.service.BannerService;
    import io.swagger.annotations.Api;
    import io.swagger.annotations.ApiOperation;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    @Api(value = "轮播图", tags = {"用于轮播图的相关接口"})
    @RestController
    @RequestMapping("/banner")
    public class BannerController {
        @Autowired
        private BannerService bannerService;
        @ApiOperation(value = "轮播图", notes = "轮播图", httpMethod = "GET")
        @GetMapping("/test")
        public String test() {
            throw new ForbiddenException(1001);
    //        return "hell cworld111333";
        }
    }

    这个controller位于 v1 的包下

    5.测试

  • 相关阅读:
    Scrapy之下载中间件与爬虫中间件
    Scrapy之twisted模块
    Scrapy之下载中间件中的代理中间件HttpProxyMiddleware
    Scrapy之start_urls、爬虫中间件之深度,优先级以及源码流程
    Scrapy之dupefilters(去重)以及源码分析/depth
    NOI 2013 书法家
    NOI2013 快餐店
    NOI2013 树的计数
    NOI2013 UOJ122 向量内积
    NOI2015
  • 原文地址:https://www.cnblogs.com/guangzhou11/p/12346208.html
Copyright © 2011-2022 走看看