最近开了一个新项目,想用全注解式开发,在整合框架的时候遇到struts2.0 采用注解配置的时候action死活进不去,
报这错:
There is no Action mapped for namespace [/login] and action name [login] associated with context path [/toJsp]. - [unknown location]
不才我在想会不会是导入的包错了?然后一个一个检查,然后又想是不是写错了字,最后发现是struts2,如果用注解调用action的时候,那些action的类一定要写在action包下
//package com.tobeface.supplier.web;错误
package com.tobeface.supplier.web.action;正确
这是坑爹的节奏。
//使用json-default要导入以下的依赖包,也可以使用struts-default
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-json-plugin</artifactId>
<version>${struts2.version}</version>
</dependency>
@Namespace("/login")
@ParentPackage("json-default")
public class LoginAction extends BaseAction {
@Action(value=" toJsp",results={@Result(name="dispatcher", type="dispatcher",location="/login.jsp")})
public String toJsp()throws Exception{
return "dispatcher";
}
}
总算把框架搭好了~希望以后别有人重蹈我的覆辙。
分享到:
相关推荐
前几天在网上下载一个struts2的helloword的例子,那个作者也真够缺德的,搞个错误的程序,害得我查了一天的程序错误。 最后发现竟然是struts.xml被写成啦sturts.xml。 碰见这样的问题先鄙视下提供例子的作者, 再...
在Web开发中,尤其是使用基于Java的Web框架如Struts时,开发者可能会遇到一个常见的问题:“HTTP Status 404 - There is no Action mapped for namespace and action name BackMemberGroupAudit”。这个问题通常出现...
"错误-There is no Action mapped for namespace and action name"是Struts2中常见的一个错误,表明在当前命名空间下没有找到对应的动作映射。"There is no Action mapped for namespace and action name错误的解决...
在网上找了好个struts2的例子结果都不好使报There is no Action mapped for namespace / and action name这个错,没办法自己搞了个好用的,myeclipse 6.0 +tomcat5.5 + jdk 1.5 引入项目后直接发布就可以了!
错误信息通常为:“There is no Action mapped for namespace / and action name.”,这意味着Struts2在尝试处理请求时找不到对应的Action映射。此外,如果设置了默认的欢迎页面(welcome file),但在启动应用后...
这有时会导致找不到Action的错误,如"There is no Action mapped for namespace/and action name Login.",需确保在web.xml中正确配置Struts2的FilterDispatcher以加载这些资源。 2. **UI组件与模板引擎**:为了...
HTTPStatus 404 - There is no Action mapped for namespace [/] and action name [user_login] ``` 这通常意味着在`struts.xml`中未为指定的动作名和命名空间配置对应的Action处理类。解决这一问题的关键在于确保...
当出现"10_Struts2_There_is_no_action_mapped_namespace异常"时,通常表示Struts 2找不到与请求路径相对应的Action配置。这可能是因为命名空间(namespace)配置错误,或者Action没有正确注册在struts.xml文件中。...
本文将针对其中一种常见的错误提示:“There is no Action mapped for namespace / and action name”进行深入分析,并给出相应的解决方法。 #### 二、问题描述 当在使用 Struts 框架开发 Web 应用时,如果配置...
* There is no Action mapped for namespace [/] and action name [test-update] associated with context path [/Struts2_01]. 这些错误提示通常是由于映射问题引起的。解决这些问题的步骤是: 1. 先排查访问的...