`
zhyl2010
  • 浏览: 11952 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
最近访客 更多访客>>
社区版块
存档分类
最新评论

解决STRUTS2 错误 There is no Action mapped for namespace / and action name login

阅读更多
使用MyEclipse8.5 + tomcat6.0进行开发。
这是一个登录验证程序。 
已经把structs资源包中的blank项目中的jar放到myeclipse的lib目录中 
代码部分见下 
错误信息 
严重: Could not find action or result 
There is no Action mapped for namespace / and action name login. - [unknown location]  ......
===================================================================
  /**********************以下为代码和配置文件**********************/
===================================================================
LoginAction.java程序如下:
package com.struts.action;

public class LoginAction {

private String username;
private String password;

public String getUsername() {
return username;
}

public void setUsername(String username) {
this.username = username;
}

public String getPassword() {
return password;
}

public void setPassword(String password) {
this.password = password;
}

public String execute() {
if (username.trim().equals("www") && (password.equals("www"))) {
return "success";
} else {
return "failed";
}
}
}
===============================================================
index.jsp文件代码如下:
<body>
<center>
<h1 align="center">
用户登录
</h1>
<form action="login.action" method="post">
姓名:
<input type="text" name="username" />
<br>
密码:
<input type="text" name="password" />
<br>
<br>
<br>
<input type="submit" name="submit" value="登录" />
</form>
</center>
</body>
================================================================
success.jsp和failed.jsp代码非常相似,如下:
success.jsp
<body>
<h1>欢迎登录!</h1>
</body>
failed.jsp
<body>
<h1>
登录失败!
</h1>
<a href="index.jsp">返回</a>
</body>
================================================================
其中struts.xml配置如下:
<struts>
<package namespace="" name="login" extends="struts-default">
<action name="login" class="com.struts.action.LoginAction">
<result name="success">/success.jsp</result>
<result name="failed">/failed.jsp</result>
</action>
</package>
</struts>
=================================================================
web.xml配置如下:
<filter>
<filter-name>struts</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
=================================================================
  /*******************一下为解决方法****************************/
=================================================================
刚开始时,输入用户名和密码点击登录按钮时,就会显示http;status 404错误,There is no Action mapped for namespace / and action name login,经过仔细观察,解决方法如下:
1.将struts.xml一定要放在src目录下,这样在程序编译时,就会将其放到classes目录下。
2.一定要将struts.xml中的extends="struts-default"写正确,刚开始的时候,把default写成了dafult,最后经过改正,程序可以正常运行了!
3.插一句,namespace写不写都影响不大的。
一定要注意以上红色字体和蓝色字体部分,这个是程序能否正常运行的关键!!!
分享到:
评论
3 楼 zhyl2010 2012-08-16  
落雪封 写道
仍然过不去啊!还是那个错误

你再仔细看看,不知道是不是struts版本的问题,我用的都是2.2以上的
2 楼 落雪封 2012-01-25  
仍然过不去啊!还是那个错误
1 楼 zudajun225 2011-09-08  
我下了一个struts2.1.8,然后就开始做一个Helloworld程序,接着就发生了There is no Action mapped for namespace / and action name的异常,我很纳闷,然后到百度上搜了一下,发现铺天盖地的都是这个异常,长达4页多,但是都没能解决我的问题。经过研究,我终于发现异常产生的原因,非常兴奋,由于用文字难以表述这个异常,于是我特别为这个异常录制了一集28分钟的视频,这个异常非常有意思。如果谁遇到了这个异常,而你又不知道为什么,那么请留下联系方式,我会将这个28分钟的视频传给你,里面清楚的阐述了异常的原因,以及如何避免这个异常的产生。最好留下QQ号码,如果email的话,怕传不了,视频大小30M。你也可以加这个QQ号码:215498544,我会把视频传给,你会发现这是个非常有意思的异常。
视频下载地址:http://download.csdn.net/detail/zudajun225/3581893

相关推荐

    一个struts2的例子:彻底解决STRUTS2 错误There is no Action mapped for namespace / and action name login

    前几天在网上下载一个struts2的helloword的例子,那个作者也真够缺德的,搞个错误的程序,害得我查了一天的程序错误。 最后发现竟然是struts.xml被写成啦sturts.xml。 碰见这样的问题先鄙视下提供例子的作者, 再...

    HTTP Status 404 - There is no Action

    在Web开发中,尤其是使用基于Java的Web框架如Struts时,开发者可能会遇到一个常见的问题:“HTTP Status 404 - There is no Action mapped for namespace and action name BackMemberGroupAudit”。这个问题通常出现...

    struts2 HelloWord例字

    在网上找了好个struts2的例子结果都不好使报There is no Action mapped for namespace / and action name这个错,没办法自己搞了个好用的,myeclipse 6.0 +tomcat5.5 + jdk 1.5 引入项目后直接发布就可以了!

    struts2教程-学习笔记.zip

    "There is no Action mapped for namespace and action name错误的解决方法.txt"文档可能详细解释了这个问题的成因,如配置错误、Action类未正确指定、或者struts.properties或struts.xml配置文件中的条目缺失。...

    解决使用struts2 时 访问web工程首页问题

    错误信息通常为:“There is no Action mapped for namespace / and action name.”,这意味着Struts2在尝试处理请求时找不到对应的Action映射。此外,如果设置了默认的欢迎页面(welcome file),但在启动应用后...

    struts 中遇到的常见问题 解决,你还在痛苦中吗

    本文将针对其中一种常见的错误提示:“There is no Action mapped for namespace / and action name”进行深入分析,并给出相应的解决方法。 #### 二、问题描述 当在使用 Struts 框架开发 Web 应用时,如果配置...

    Struts2深刻理解所记的笔记

    这有时会导致找不到Action的错误,如"There is no Action mapped for namespace/and action name Login.",需确保在web.xml中正确配置Struts2的FilterDispatcher以加载这些资源。 2. **UI组件与模板引擎**:为了...

    struts2 的异常收集

    HTTPStatus 404 - There is no Action mapped for namespace [/] and action name [user_login] ``` 这通常意味着在`struts.xml`中未为指定的动作名和命名空间配置对应的Action处理类。解决这一问题的关键在于确保...

    Struts2 框架搭建(基本)和几个报错问题

    1. **No Action mapped for namespace [/] and action name [helloWorld]**:这通常意味着Struts2没有找到对应的Action配置。检查`struts.xml`文件是否正确配置了Action。 2. **Class not found**:如果出现找不到...

    struts2错误集合.txt

    错误信息:“There is no result type defined for type 'json' mapped with name 'success'”。这意味着在`struts.xml`文件中没有正确定义JSON类型的处理结果。需要检查配置文件中的定义是否正确。 以上内容涵盖...

    struts包下载

    当出现"10_Struts2_There_is_no_action_mapped_namespace异常"时,通常表示Struts 2找不到与请求路径相对应的Action配置。这可能是因为命名空间(namespace)配置错误,或者Action没有正确注册在struts.xml文件中。...

    struts2.5+框架使用通配符与动态方法常见问题小结

    * There is no Action mapped for namespace [/] and action name [test-update] associated with context path [/Struts2_01]. 这些错误提示通常是由于映射问题引起的。解决这些问题的步骤是: 1. 先排查访问的...

    Struts2+Hibernate实现一对多联表查询

    在Java Web开发中,Struts2和Hibernate是两个非常重要的框架。Struts2是一个MVC(Model-View-Controller)框架,它负责处理用户请求,控制业务逻辑,并将数据传递给视图展示;而Hibernate则是一个对象关系映射(ORM...

    计算机组成与结构体系英文课件:Chapter3 BasicInputOutput

    As these devices typically operate at slower speeds compared to the CPU and RAM, there is a need for I/O interfaces. An I/O device interface acts as a mediator, facilitating data transfer and ...

    外文翻译 stus MVC

    There is no flow logic, no business logic, and no model information -- just tags. Tags are one of the things that make Struts unique compared to other frameworks like Velocity. Note: "Think thin" ...

    ibatis+struts2开发

    在Web开发领域,Struts2和iBatis是两个非常重要的技术组件,它们分别负责表现层和持久层的处理。Struts2是一个基于MVC(Model-View-Controller)架构的开源Java框架,用于构建可维护性和扩展性高的Web应用程序。而...

    微软内部资料-SQL性能优化2

    To reserve or commit memory and unintentionally not release it when it is no longer being used. A process can leak resources such as process memory, pool memory, user and GDI objects, handles, threads...

    spring+struts2+hibernate 一对多增删改查

    总之,"spring+struts2+hibernate 一对多增删改查"项目展示了SSH框架如何高效地处理复杂的数据关系,提供了一种灵活且强大的Java Web开发解决方案。通过深入理解这三个框架的交互机制和一对多关系的处理,开发者可以...

    struts_2.3.12GA_API文档(chm版本)

    Stops the action invocation immediately (by throwing a PauseException) and causes the action invocation to return the specified result, such as Action.SUCCESS, Action.INPUT, etc. void ...

Global site tag (gtag.js) - Google Analytics