博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring3属性之useDefaultSuffixPattern
阅读量:6185 次
发布时间:2019-06-21

本文共 771 字,大约阅读时间需要 2 分钟。

今天从网上抄了个Spring MVC的demo. 发现Controller方法上采用

@RequestMapping("/hello")作为Request与Controller的映射。但对于/hello.html居然也会走这个方法。不解,调查发现在DefaultAnnotationHandlerMapping类有一个addUrlsForPath方法:

/**     * Add URLs and/or URL patterns for the given path.     * @param urls the Set of URLs for the current bean     * @param path the currently introspected path     */    protected void addUrlsForPath(Set
urls, String path) { urls.add(path); if (this.useDefaultSuffixPattern && path.indexOf('.') == -1 && !path.endsWith("/")) { urls.add(path + ".*"); urls.add(path + "/"); } }

从代码中可以看出类似/hello这种,没有点又非“/”的结尾的URL,会衍生为三个URL:

1. /hello  2. /hello.* 3. /hello/

即只要是这三种URL模式的请求,都会映射到这个Controller上。该功能的启用与停止,由属性useDefaultSuffixPattern来控制。

转载地址:http://hmida.baihongyu.com/

你可能感兴趣的文章
haproxy负载均衡
查看>>
我的友情链接
查看>>
nginx实现反向代理
查看>>
bash脚本之for语句if语句以及各种测试语句(1)
查看>>
字符集设置
查看>>
java类的初始化过程
查看>>
int ,long , long long , __int64类型的范围
查看>>
我的友情链接
查看>>
Oracle 11G 单机asm安装
查看>>
关于OWA页面下登录提示找不到邮箱问题
查看>>
AttributeUsageAttribute自定义特性属性说明
查看>>
戴尔软件:端到端解决方案的黏合剂
查看>>
iptables 参数意义
查看>>
smtp 的25端口连接超时
查看>>
2016.1.22 利用LINQ实现DataSet内多张DataTable关联查询操作(目前未发现太大价值)
查看>>
alerta 集中化告警信息 -zabbix
查看>>
返回顶部功能的实现
查看>>
NodeJS 笔记 URL模块
查看>>
205. Isomorphic Strings(字符串同构)
查看>>
C#笔记第三节课
查看>>