struts2标签 The Struts dispatcher cannot be found

问题原因:用了struts标签,但没有引入标签? 
JSP页面中没有加入类似下面内容:
 <%@ taglib prefix="s" uri="/struts-tags"%>

也有可能是配置问题
web.xml中配置的struts2 filter拦截器不是/*
应该配置成:
 <filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

你可能感兴趣的:(struts2标签 The Struts dispatcher cannot be found)