欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-01-28 13:56:28
目录如何为web层添加统一请求前缀配置文件方式实现webmvcconfigurer接口spring web访问页面出现多余前缀和后缀情况页面中出现hello.jsp解决方法如何为web层添加统一请求前...

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

配置文件方式

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

server.servlet.context-path=/api

实现webmvcconfigurer接口

重写configurepathmatch()方法,代码:

@configuration
public class webmvcconfig implements webmvcconfigurer {    
    /**
     * 请求路径添加统一前缀
     *
     * @param configurer
     */
    @override
    public void configurepathmatch(pathmatchconfigurer configurer) {
        configurer.addpathprefix("/api", c -> c.isannotationpresent(restcontroller.class) || c.isannotationpresent(controller.class));
    }
}

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

@configuration
public class webmvcconfig implements webmvcconfigurer {    
    /**
     * 请求路径添加统一前缀
     *
     * @param configurer
     */
    @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
@requestmapping
public @interface apirestcontroller {
    /**
     * alias for {@link requestmapping#name}.
     */
    @aliasfor(annotation = requestmapping.class)
    string name() default "";
 
    /**
     * alias for {@link requestmapping#value}.
     */
    @aliasfor(annotation = requestmapping.class)
    string[] value() default {};
 
    /**
     * alias for {@link requestmapping#path}.
     */
    @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层添加统一请求前缀

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。