当前位置: 代码迷 >> Java Web开发 >> struts2+tomcat5.5+myeclipse6.5的404异常
  详细解决方案

struts2+tomcat5.5+myeclipse6.5的404异常

热度:5888   发布时间:2013-02-25 21:20:00.0
struts2+tomcat5.5+myeclipse6.5的404错误
web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <filter>
  <filter-name>struts2</filter-name>
  <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  <filter-mapping>
  <filter-name>struts2</filter-name>
  <url-pattern>/*</url-pattern>
  </filter-mapping>
   
  <welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

struts.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
  "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
  "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
  <package name="default" namespace="/" extends="struts-default">
  <action name="login" class="login.LoginAction" method="execute">
  <result name="success">/welcome.jsp</result>
  <result name="login">/login.jsp</result>
  </action>
  </package>
</struts>

project name:struts2my
struts2my
--src
----login (packge)
------LoginAction.java

web.xml struts.xml在web_inf下面
welcome.jsp login.jsp index.jsp 在webroot下面
http://localhost:8099/struts2my/login.jsp 访问时,404错误
每次修改配置文件后,都有重启tomcat
请高手帮忙看看

------解决方案--------------------------------------------------------
http://localhost:8099/struts2my//login.jsp 这样才行。<package name="default" namespace="/" extends="struts-default">

------解决方案--------------------------------------------------------
1楼说的不对

楼主先把web xml里面的struct配置先删除 
然后在访问login.jsp试一试
若去掉能访问的话 说明配置的struct核心控制器有问题

至于什么问题 
第一:struct版本导致所用的控制器不一样
第二:struct配置文件放的路径不对 应该放src下面
第三:我也不知道什么问题

呵呵
  相关解决方案