使用struts2标签时出的错误。
错误信息是The 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]我的web.xml配置如下         <filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> </filter> <filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

网上查了下说加一个过滤选项
         <filter-mapping>
             <filter-name>struts2<filter-name>
             <url-pattern>*.jsp<url-pattern>
          <filter-mapping>
可是一加*.jspeclipse就报错,说什么jsp is not well spelled的
到底该怎么解决?