初学者遇到struts2配置问题

CouldnotfindactionorresultThereisnoActionmappedfornamespace/andactionname.-[unknownlo... Could not find action or result
There is no Action mapped for namespace / and action name . - [unknown location]
-----------------------------------------------------------------------------------------------------------
HelloWorldAction代码如下:
package cn.itcast.action;

public class HelloWorldAction {

private String message;

public String getMessage() {
return message;
}

public void setMessage(String message) {
this.message = message;
}

public String execute() {
this.message = "我的第一个struts2应用";
return "success";
}

}
-----------------------------------------------------------------------------------------------------------
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="itcast" namespace="/test" extends="struts-default">
<action name="helloworld" class="cn.itcast.action.HelloWorldAction" method="execute" >
<result name="success">/WEB-INF/page/hello.jsp</result>
</action>
</package>
</struts>
-----------------------------------------------------------------------------------------------------------web.xml代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
</web-app>
-----------------------------------------------------------------------------------------------------------
hello.jsp代码如下:
<%@ page language="java" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>第一个struts2应用</title>
</head>
<body>
${message } <br>
</body>
</html>
代码结构如下
展开
 我来答
百度网友46b235f5b2
2011-06-02 · TA获得超过1397个赞
知道小有建树答主
回答量:676
采纳率:100%
帮助的人:628万
展开全部
页面提交的路径对吗?如果是对的,看看的action类的名字,注意大小写!

没看到你的补充问题,这里错了吧?
<result name="success">/WEB-INF/page/hello.jsp</result>
应该是:<result name="success">/page/hello.jsp</result>
页面访问的路径应该是:/test/helloworld.action
追问
还是不行,同样报错,错误还是开始的那个,根据资料写的代码,正在摸索中,谢谢提供参考。
追答
我给你写个简单的流程:
页面:点击

struts.xml:

welcome.jsp//该页面位于webroot目录下边

action:
String msg; //省略了set、get方法
public String testMethod()
{
this.msg = "测试";
return "win";
}

webroot下边的welcome.jsp:

你拿这个去对比下。
bluedrame1997
2011-06-02
知道答主
回答量:6
采纳率:0%
帮助的人:3.7万
展开全部
调action的页面放上来看看,是不是action写错了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lengdao20
2011-06-02
知道答主
回答量:2
采纳率:0%
帮助的人:0
展开全部
你那个${message}的值是什么?如果是/test/helloword.action的话就没错了
追问
我也不知道值是什么,刚试着写了个打印的语句,都没执行,估计还是配置问题~!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
帐号已注销
2011-06-02 · TA获得超过1243个赞
知道小有建树答主
回答量:2126
采纳率:55%
帮助的人:669万
展开全部
你的form表单呢?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式