返回顶部
首页 > 资讯 > 精选 >springboot怎么为web层添加统一请求前缀
  • 733
分享到

springboot怎么为web层添加统一请求前缀

2023-06-29 05:06:07 733人浏览 八月长安
摘要

这篇文章主要介绍“SpringBoot怎么为WEB层添加统一请求前缀”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“springboot怎么为web层添加统一请求前缀”文章能帮助大家解决问题。如何为w

这篇文章主要介绍“SpringBoot怎么为WEB层添加统一请求前缀”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“springboot怎么为web层添加统一请求前缀”文章能帮助大家解决问题。

如何为web层添加统一请求前缀

配置文件方式

application.properties全局配置文件配置:

server.servlet.context-path=/api

实现WebmvcConfigurer接口

重写configurePathMatch()方法,代码:

@Configurationpublic class WebMvcConfig implements WebMvcConfigurer {            @Override    public void configurePathMatch(PathMatchConfigurer configurer) {        configurer.addPathPrefix("/api", c -> c.isAnnotationPresent(RestController.class) || c.isAnnotationPresent(Controller.class));    }}

上面为controller层所有都添加了统一前缀,如果不同版本想使用不同的请求前缀,可优化如下:

@Configurationpublic class WebMvcConfig implements WebMvcConfigurer {            @Override    public void configurePathMatch(PathMatchConfigurer configurer) {        configurer.addPathPrefix("/api", c -> c.isAnnotationPresent(ApiRestController.class))            .addPathPrefix("/api/v2", c -> c.isAnnotationPresent(ApiV2RestController.class));    }}

对有 @ApiRestController 注解的 controller 添加 /api 前缀,对有@ApiV2RestController 注解的controller添加 /api/v2 前缀。

@ApiRestController 和 @ApiV2RestController 是自定义注解,继承自 @RestController:

import org.springframework.core.annotation.AliasFor;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;import java.lang.annotation.*; @Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@RestController@RequestMappingpublic @interface ApiRestController {        @AliasFor(annotation = RequestMapping.class)    String name() default "";         @AliasFor(annotation = RequestMapping.class)    String[] value() default {};         @AliasFor(annotation = RequestMapping.class)    String[] path() default {};}

使用:

@ApiRestController("/demo")public class DemoController extends BaseController{}

这样请求地址就成了:Http://localhost:8080/api/demo

spring web访问页面出现多余前缀和后缀情况

页面中出现hello.jsp

springboot怎么为web层添加统一请求前缀

解决方法

去掉servlet中的前缀后缀配置项

springboot怎么为web层添加统一请求前缀

关于“springboot怎么为web层添加统一请求前缀”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注编程网精选频道,小编每天都会为大家更新不同的知识点。

--结束END--

本文标题: springboot怎么为web层添加统一请求前缀

本文链接: https://lsjlt.com/news/322847.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • springboot怎么为web层添加统一请求前缀
    这篇文章主要介绍“springboot怎么为web层添加统一请求前缀”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“springboot怎么为web层添加统一请求前缀”文章能帮助大家解决问题。如何为w...
    99+
    2023-06-29
  • springboot如何为web层添加统一请求前缀
    目录如何为web层添加统一请求前缀配置文件方式实现WebMvcConfigurer接口spring web访问页面出现多余前缀和后缀情况页面中出现hello.jsp解决方法如何为we...
    99+
    2024-04-02
  • JS前端并发多个相同的请求怎么控制为只发一个请求
    这篇文章主要讲解了“JS前端并发多个相同的请求怎么控制为只发一个请求”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“JS前端并发多个相同的请求怎么控制为只发一个请求”吧!描述如下同时发多个相同...
    99+
    2023-07-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作