SpringBoot URL忽略大小寫


SpringBoot URL忽略大小寫

在有些系統對接的時候,url接口不需要區分大小寫,做個筆記,以后能找到

原文:https://www.cnblogs.com/minhou/p/8608302.html

package com.biubiu.filter.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.util.AntPathMatcher;
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;

/**
 * WebConfig url忽略大小寫
 *
 * @author biubiu
 */
@Configuration
public class WebConfig extends WebMvcConfigurationSupport {
    
    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        AntPathMatcher matcher = new AntPathMatcher();
        matcher.setCaseSensitive(false);
        configurer.setPathMatcher(matcher);
    }
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM