Struts dispatcher cannot be found. This is usually caused by using Struts tags without the associat

来源:互联网 发布:网络调度管理招聘 编辑:程序博客网 时间:2024/05/09 02:44

error:

Struts dispatcher cannot be found.  This is usually caused by using Struts tags without the associated filter. Struts tags are only usable when the request has passed through its servlet filter, which initializes the Struts dispatcher needed for this tag. - [unknown location]

google翻译:

Struts的调度不能被发现。这通常是由于没有相关的过滤使用Struts标签Struts标签可用请求通过servlet过滤器,它初始化这个标签需要Struts的调度通过​​。 - [未知位置]

解决方案:再添加一个struts2 <filter-mapping>

<filter-mapping><filter-name>struts2</filter-name><url-pattern>*.jsp</url-pattern></filter-mapping>