免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3167 | 回复: 1
打印 上一主题 下一主题

[Web] Tomcat启动时,自己部署的WEB APP启动失败,帮看看这个web.xml是否有问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-01 16:14 |只看该作者 |倒序浏览
自己写了个Servlet的配置,目的是把所有.jsp结尾的url访问都转到指定的Servlet。在web.xml的配置如下:
  <servlet-mapping>
    <servlet-name>simpleServlet</servlet-name>
    <url-pattern>/*.jsp</url-pattern>
  </servlet-mapping>


但是把APP部署到Tomcat,启动Tomcat时,这个部分报了错误:
2008-8-1 16:01:49 org.apache.catalina.startup.ContextConfig applicationConfig
严重: Parse error in application web.xml
java.lang.IllegalArgumentException: Invalid <url-pattern> /*.jsp in servlet mapp
ing
        at org.apache.commons.digester.Digester.createSAXException(Digester.java
:2540)
        at org.apache.commons.digester.Digester.createSAXException(Digester.java
:2566)

是不允许这样的通配符匹配吗?
使用的Tomcat是5.0.28版本的,在WIN XP上。

论坛徽章:
0
2 [报告]
发表于 2008-09-05 09:53 |只看该作者
<url-pattern>/*.jsp</url-pattern> 有问题
去掉 / 试试



• A string beginning with a ‘/’ character and ending with a ‘/*’ postfix is used for path mapping.
• A string beginning with a ‘*.’ prefix is used as an extension mapping.
• A string containing only the ’/’ character indicates the "default" servlet of the
application. In this case the servlet path is the request URI minus the context
path and the path info is null.
• All other strings are used for exact matches only.

  1.   /path[/*]用于路径匹配   
  2.   *.ext用于后缀匹配
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP