spring boot 根据目录结构自动生成路由前缀
Posted 1点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 根据目录结构自动生成路由前缀相关的知识,希望对你有一定的参考价值。
1.
.新建一个类 继承 RequestMappingHandlerMapping
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.测试
以上是关于spring boot 根据目录结构自动生成路由前缀的主要内容,如果未能解决你的问题,请参考以下文章
在 Spring Boot 中自动生成 API 文档 [关闭]