springboot如何忽略url大小写呢?

戚薇 SpringBoot 发布时间:2022-06-30 16:39:32 阅读数:3898 1
下文笔者讲述springboot忽略url大小写的方法分享,如下所示
实现思路:
    只需重写configurePathMatch方法
	即可实现忽略springboot中url大小写的示例
例:URL忽略大小写
/**
 * MVC配置类 
 */
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
    @Resource
    private WebPathConfig webPathConfig;

    /**
     * 接口地址忽略大小写
     * @param configurer
     */
    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        AntPathMatcher matcher = new AntPathMatcher();
        matcher.setCaseSensitive(false);
        configurer.setPathMatcher(matcher);
    }
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202206/3846.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者