首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

struts标记不辨别

2012-09-17 
struts标记不识别The Struts dispatcher cannot be found. This is usually caused by using Struts tags

struts标记不识别
The Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associated filter.

对应的可能只能是如下两项

(1)JSP页面中没有加入类似下面内容:
<%@ taglib prefix="s" uri="/struts-tags"%>
(2)拦截器不是/*
<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

热点排行