开发者社区> 问答> 正文

Spring MVC 如何取消 /index.*映射

Spring MVC 会默认为

@RequestMapping(value = "/index")
映射到以下三种地址:

1、Mapped URL path [/index] onto handler 'indexController'
2、Mapped URL path [/index.*] onto handler 'indexController'
3、Mapped URL path [/index/] onto handler 'indexController'

由于第二种存在安全隐患,不想要了,如何取消第二种映射?

展开
收起
a123456678 2016-03-16 13:44:38 2112 0
1 条回答
写回答
取消 提交回答
  • DefaultAnnotationHandlerMapping类:

    protected void addUrlsForPath(Set<String> urls, String path) {
            urls.add(path);
            if (this.useDefaultSuffixPattern && path.indexOf('.') == -1 && !path.endsWith("/")) {
                urls.add(path + ".*");
                urls.add(path + "/");
            }
        }
    2019-07-17 19:03:51
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
云栖社区特邀专家徐雷Java Spring Boot开发实战系列课程(第20讲):经典面试题与阿里等名企内部招聘求职面试技巧 立即下载
微服务架构模式与原理Spring Cloud开发实战 立即下载
阿里特邀专家徐雷Java Spring Boot开发实战系列课程(第18讲):制作Java Docker镜像与推送到DockerHub和阿里云Docker仓库 立即下载

相关实验场景

更多