struts2访问jsp页面异常The Struts dispatcher cannot be

时间:2021-12-06 20:56:52

利用Struts2进行开发,当访问某个jsp页面时我们可能会遇到: org.apache.jasper.JasperException: The Struts dispatcher cannot be


一般是web.xml中核心过滤器没有配置好


在web.xml文件中添加一个过滤设置:
 <filter-mapping>  
    <filter-name>struts2</filter-name>  
    <url-pattern>*.jsp</url-pattern>  
</filter-mapping> 
一般
 <filter-mapping>  
    <filter-name>struts2</filter-name>  
    <url-pattern>/*</url-pattern>  
</filter-mapping>