我是靠谱客的博主 甜甜大侠,最近开发中收集的这篇文章主要介绍SpringBoot @RequestMapping地址不区分大小写一、创建配置文件WebConfig二、编写测试接口三、结果,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

SpringBoot @RequestMapping地址不区分大小写

  • 一、创建配置文件WebConfig
  • 二、编写测试接口
  • 三、结果

一、创建配置文件WebConfig

示例:pandas 是基于NumPy 的一种工具,该工具是为了解决数据分析任务而创建的。

package com.au.sss.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.WebMvcConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

@Configuration
class WebConfig implements WebMvcConfigurer {
    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        AntPathMatcher matcher = new AntPathMatcher();
        matcher.setCaseSensitive(false);
        configurer.setPathMatcher(matcher);
    }
}

二、编写测试接口

package com.au.sss.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {

    @RequestMapping("/test")
    public String test(){
        return "test";
    }
}

三、结果

请添加图片描述

最后

以上就是甜甜大侠为你收集整理的SpringBoot @RequestMapping地址不区分大小写一、创建配置文件WebConfig二、编写测试接口三、结果的全部内容,希望文章能够帮你解决SpringBoot @RequestMapping地址不区分大小写一、创建配置文件WebConfig二、编写测试接口三、结果所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部