没有,我运行的这个例子是STRUTS自带的struts-blank这个例子.

解决方案 »

  1.   

    xml文件没有问题,在别人机器上能用,也是用tomcat 5.0与struts 1.1运行起来一切正常.而且我又重新安装了一下这两个工具.但还是没有用.
      

  2.   

    看一下tomcat的日志,看有什么异常没
      

  3.   


    java.lang.NoClassDefFoundError: javax/servlet/jsp/tagext/TagExtraInfotry the following:Remove following line of code in jsp's files,
    <%@ taglib uri="/WEB-INF/struts.tld" prefix="struts" %>  
    and
    Modify following code in *.jsp,
    replace <struts:message > tag with <bean:message>
    good luck.
      

  4.   

    catalina_log.2004-09-29.txt
    localhost_admin_log.2004-09-29.txt
    localhost_log.2004-09-29.txt
    在tomcat的log中有这三个文件,它们之间有什么区别,如果运行是报错,我应该看其中的哪一个日志文件.
      

  5.   

    同意
    Remove following line of code in jsp's files,
    <%@ taglib uri="/WEB-INF/struts.tld" prefix="struts" %>  
    and
    Modify following code in *.jsp,
    replace <struts:message > tag with <bean:message>
      

  6.   

    bibiye(布什的老哥) ,这位老哥说的对,我仔细把每个jsp文件看了一下,用
    replace <struts:message > tag with <bean:message>.就可以,总算解决了.
    thank you!!!