Struts2中关于"There is no Action mapped for namespace / and action name"的总结

     今天在调试一个基础的Struts2框架小程序。总是提示"There is no Action mapped for namespace / and action name"的错误。上网查询后发现这是一个初学者经常碰到的问题导致错误的原因主要有两种。总结如下:

      一、struts.xml文件错误。这种错误又分为以下几种:1struts.xml文件名错误。一定要注意拼写问题;2struts.xml文件放置路径错误。一定要将此文件放置在src目录下。编译成功后要确认是否编译到classes目录中;3struts.xml文件内容错误。下面给出一个正确的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="com.wanggc.struts2.sample.Struts2Action">
<result name="success">/jsp/result.jsp</result>
</action>
</package>
</struts>

 

      二、如果排除了struts.xml文件的问题还有一种可能就是在web.xml文件中的<welcome-file>信息中是否配置了自己工程的启动页面。如果没有配置地址栏中要输入完成的url如:http://localhost:8080/Struts2Sample/jsp/login.jsp后面的资源详细信息不输入的时候也会报这个错误我就是栽在这个问题上的(^_^)。

我现在 的就是这个问题

<span style="color:#393939;"><?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Strust2UpDown</display-name>
 </span><span style="color:#ff0000;"> <welcome-file-list>
    <welcome-file>/upfile/upfile_01.jsp</welcome-file>
    <welcome-file>/upfile/upfile_01.jsp</welcome-file>
  </welcome-file-list></span><span style="color:#393939;">
  <!-- struts Framework --> 
  <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>
  
</web-app></span>





你可能感兴趣的:(Struts2中关于"There is no Action mapped for namespace / and action name"的总结)