Chinaunix首页 | 论坛 | 博客
  • 博客访问: 944586
  • 博文数量: 264
  • 博客积分: 10107
  • 博客等级: 上将
  • 技术积分: 2455
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-09 16:34
文章分类

全部博文(264)

文章存档

2012年(1)

2011年(11)

2010年(128)

2009年(82)

2008年(42)

我的朋友

分类: 系统运维

2010-11-12 21:44:23

The Struts dispatcher cannot be found.  This is usually caused by using Struts tags without the associated filter.
 
增加红色的部分,即可解决此问题。
 
  
    struts2  
    *.jsp  
 
 
 
 
    struts2
    /struts/*
 

 
    struts2
    *.action
 
 
 

struts-2.0.dtd 标签文件放置在 \META-INF 或者 \WEB-INF 目录下
 

Struts2标签错误:using Struts tags without the associat解决
时间:2009-11-14 12:30    来源:未知    作者:liuwei1981
 
核心提示:filter-mapping filter-name struts2 / filter-name url-pattern *.jsp / url-pattern / filter-mapping 最近使用 struts ,在使用标签的时候,出现了这样一个问题。 原本使用标签,引用方法是默认配置: web.xml: filter filter-name struts2 / filter-nam

 

  1. <filter-mapping>  
  2.     <filter-name>struts2filter-name>  
  3.     <url-pattern>*.jspurl-pattern>  
  4. filter-mapping>  

    最近使用struts,在使用标签的时候,出现了这样一个问题。

     原本使用标签,引用方法是默认配置:

     web.xml:

  1. <filter>  
  2.   <filter-name>struts2filter-name>  
  3.     <filter-class>  
  4.        org.apache.struts2.dispatcher.FilterDispatcher   
  5.     filter-class>  
  6. filter>  
  7.   
  8. <filter-mapping>  
  9.     <filter-name>struts2filter-name>  
  10.     <url-pattern>/*url-pattern>  
  11. filter-mapping>  

    在页面中引用:

  1. <%@ taglib prefix="s" uri="/struts-tags"%>  

 

    由于在使用的web应用中一些特殊应用的关系,web.xml的配置改为:

  1. <filter>  
  2.   <filter-name>struts2filter-name>  
  3.     <filter-class>  
  4.        org.apache.struts2.dispatcher.FilterDispatcher   
  5.     filter-class>  
  6. filter>  
  1. <taglib>  
  2.   <taglib-uri>struts-tagstaglib-uri>  
  3.   <taglib-location>/WEB-INF/struts2-core-2.0.11.jartaglib-location>  
  4.  taglib>  
  5.   
  6. <filter-mapping>  
  7.     <filter-name>struts2filter-name>  
  8.     <url-pattern>/*.actionurl-pattern>  
  9. filter-mapping>  

    让sturts过滤器只接受后缀名为action的请求,并把struts标签配置到web.xml文件。  

    但在使用中,直接访问index.jsp,出现异常:

  1. The Struts dispatcher cannot be found.  This is usually caused by using Struts tags without the associated filter. Strut   
  2. s tags are only usable when the request has passed through its servlet filter, which initializes the Struts dispatcher n   
  3. eeded for this tag. - [unknown location]  

    在struts2中不能直接使用jsp,引用struts2的标签么?是否有解决的方法?

   找到解决方法了,其实只要再加一个过滤设置就可以了:

  1. <filter-mapping>  
  2.     <filter-name>struts2filter-name>  
  3.     <url-pattern>*.jspurl-pattern>  
  4. filter-mapping>  
  1. <filter-mapping>  
  2.     <filter-name>struts2filter-name>  
  3.     <url-pattern>/struts/*url-pattern>  
  4. filter-mapping>  
阅读(1969) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~