您的位置:首页 > 移动开发

web.xml中servlet-mapping的url-pattern的配置

2015-07-18 10:31 615 查看
在配置web.xml的servlet-mapping 的 url-pattern 碰到问题, 上网查, 查到servelt2_2-spec.pdf才得到答案. 

结论: 
• '/XXX/*' 

• '*.html' 

• '/' 

• 其他都是精确映射 

      例: '/XXX/Y*.html' 只能映射/XXX/Y*.html 的URL请求. 

      例: '/XXX' 只可以映射/XXX的URL请求. 

引用
10.2 Specification of Mappings 

In the web application deployment descriptor, the following syntax is used to define mappings: 

• A string beginning with a '/' character and ending with a '/*' postfix is used as a path 

mapping. 

• A string beginning with a '*.' prefix is used as an extension mapping. 

• All other strings are used as exact matches only 

• A string containing only the '/' character indicates that servlet specified by the mapping becomes the "default" servlet of the application. 

翻译如下: 

10.2 映射规则说明 

在web应用的部署描述中(web.xml)中, 以下语法结构用于定义映射: 
• 以'/'开头 并以'/*'结尾的字符串用于做路径的映射. 

• 以'*.'开头 用于做扩展的映射. 

• 其他的所有字符串都是只做精确映射. 

• 一个只是'/'的字符串 将当前这个servlet明确为应用的默认servlet. 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: