您的位置:首页 > 编程语言 > Java开发

The Struts dispatcher cannot be found. This is usually caused by using Strut

2017-06-21 11:31 453 查看
在JSP里使用struts2标签的时候,如果页面不是通过action跳转得到的会报错:

The Struts dispatcher cannot be found. This is usually caused by using Strut

解决办法:

web.xml中加入

<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.jsp</url-pattern>
</filter-mapping>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  struts2.0 jsp tomcat
相关文章推荐