`

struts2标签出错:The Struts dispatcher cannot be found...[unknown location]

阅读更多
我在使用struts2标签(<s:debug></s:debug>)时报以下错误:
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]
原因:在index.jsp中我直接使用了struts2标签。在访问应用程序的时候直接访问index.jsp(并未经过action的转发);而在web.xml配置文件中配置struts2的默认拦截器拦截后缀名为.action的应用。
<filter-mapping>
         <filter-name>struts2</filter-name>
  	<url-pattern>*.action</url-pattern>
  </filter-mapping>

在这种情况下,struts2的拦截器不起作用。所以报错了。
解决方法:
方法1:修改web.xml对struts2默认拦截器的配置为
<filter-mapping>
  	<filter-name>struts2</filter-name>
  	<url-pattern>/*</url-pattern>
  </filter-mapping></web-app>

方法2:添加一个action,通过这个action转发访问index.jsp
分享到:
评论

相关推荐

    struts2上传必备jar包,避免出现struts2的升级漏洞!自己吃亏后分享

    at org.apache.struts2.dispatcher.Dispatcher.cleanUpRequest(Dispatcher.java:837) at org.apache.struts2.dispatcher.ng.PrepareOperations.cleanupRequest(PrepareOperations.java:103) at org.apache.struts2....

    使用Struts 2标签的注意事项

    &lt;filter-class&gt;org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter &lt;filter-name&gt;struts2 &lt;url-pattern&gt;/* ``` 这段代码定义了Struts 2的核心Filter,并将其映射到所有的请求上。 其次...

    org.apache.struts2.dispatcher.FilterDispatcher

    总的来说,`org.apache.struts2.dispatcher.FilterDispatcher`是Struts 2框架中一个至关重要的组件,负责请求的分发和Action的调用,对于理解和掌握Struts 2的运行机制具有重要意义。开发者需要熟悉其工作原理和配置...

    struts2标签使用方法

    - 确保在web.xml中配置了Struts2的核心过滤器`&lt;filter-class&gt;org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter&lt;/filter-class&gt;`。 - 当使用EL表达式时,注意对象的作用域,以防止找不到...

    Struts1和Struts2区别

    Struts1和Struts2是两个非常著名的Java Web框架,它们都由Apache软件基金会开发,用于构建MVC(Model-View-Controller)架构的应用程序。虽然它们在目标上相似,但在设计模式、功能特性和使用体验上存在显著差异。...

    struts2源码解析,个人感觉很不错

    - **org.apache.struts2.dispatcher.FilterDispatcher**:这是一个过滤器,用于处理所有请求,通常将其URL模式设置为`/*`。该类有四个关键作用: - 执行Action。 - 清理`ActionContext`,防止内存泄漏。 - 处理...

    Struts课堂笔记.rar--struts2的struts.properties配置文件详解

    The org.apache.struts2.dispatcher.multipart.MultiPartRequest parser implementation for a multipart request (file upload) 专为multipart请求信息使用的org.apache.struts2.dispatcher.multipart....

    struts 2.2 api文档

    org.apache.struts2.dispatcher.ng, org.apache.struts2.dispatcher.ng.filter, org.apache.struts2.dispatcher.ng.listener, org.apache.struts2.dispatcher.ng.servlet, org.apache.struts2.impl, org.apache....

    struts2的struts.properties配置文件详解

    9. struts.dispatcher.parametersWorkaround:这是一个布尔值,用于确定是否使用Servlet请求参数工作区(PARAMETERSWORKAROUND),该工作区用于某些版本的WebLogic。 10. struts.enable.DynamicMethodInvocation:...

    Struts2 part 3:在Action中使用ServletAPI

    5. **Filter和Dispatcher**:虽然Action不直接与Servlet Filter打交道,但理解Servlet Filter机制对于优化Struts2应用很有帮助。例如,你可能需要使用Filter进行登录检查、GZIP压缩等预处理操作。 6. **URL重写和...

    传智播客struts2全程学习笔记

    &lt;filter-class&gt;org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter &lt;filter-name&gt;struts2 &lt;url-pattern&gt;/* ``` 自从Struts2.1.3版本之后,原来的`FilterDispatcher`类已经被标记为过时...

    自己写的 Struts 2源代码 例子(包括Struts2 标签)

    本压缩包包含的源代码例子旨在帮助理解Struts 2的工作原理和使用方式,特别是Struts 2的标签库。 首先,我们来了解一下Struts 2的核心概念: 1. **Action类**:是业务逻辑的载体,通常继承自`org.struts.action....

    struts-2.3.33-lib.zip

    struts2官网2.3版本的最后一个版本,能够...注意此版本的dispatcher是org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter。详见https://struts.apache.org/docs/struts-23-to-25-migration.html。

    Struts 2 技术详解:基于WebWork核心的MVC开发与实践

    5. **结果类型**:Struts 2 结果类型定义了Action执行后的跳转方式,如dispatcher(用于转发到JSP页面)、stream(用于下载文件)等。开发者可以根据需求自定义结果类型。 6. **OGNL(Object-Graph Navigation ...

    解决struts2下载异常的jar包 struts2-sunspoter-stream-1.0.jar

    at javax.servlet.http.HttpServletResponseWrapper.sendError(HttpServletResponseWrapper.java:108) at org.apache.struts2.dispatcher.Dispatcher.sendError(Dispatcher.java:770) at org.apache.struts2....

    struts2漏洞s2-045,不升级jar版本的修补方法,已验证.docx

    3. 解压找到位置 org/apache/struts2/dispatcher/multipart:然后,我们需要解压源码包,找到 org/apache/struts2/dispatcher/multipart 目录。 4. 复制文件 JakartaMultiPartRequest.java、...

    struts2配置2.5版

    &lt;?xml version="1.0" encoding="UTF-8"?... org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter &lt;!-- 拦截所有的url --&gt; &lt;filter-name&gt;struts2 &lt;url-pattern&gt;/* &lt;/web-app&gt;

    struts2标签详解(收集).pdf

    - 在`web.xml`中声明Struts2过滤器,例如:`&lt;filter-class&gt;org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter&lt;/filter-class&gt;`。 接下来,我们将简要介绍部分Struts2标签的用法: - `&lt;s:a&gt;`...

    Struts2 API 以及标签手册

    Struts2支持多种结果类型,如dispatcher(用于转发到一个JSP页面)、stream(用于返回流数据,如文件下载)等。 3. **Interceptor**: 拦截器是Struts2的一个重要特性,它们允许在Action执行前后插入自定义逻辑,如...

    Struts2 技术内幕-深入解析Struts2架构设计与实现原理

    7. ** strut2-struts2-core 包**:这是Struts2的核心库,包含了框架的基础组件,如ActionContext、Dispatcher、Interceptor Stack等。 8. **异常处理**:Struts2提供了一套全面的异常处理机制,允许开发者通过全局...

Global site tag (gtag.js) - Google Analytics