Strust2中There is no Action mapped for namespace

①login.jsp如下<body><formaction="login.action">用户:<inputtype="text"name="username"><p>密... ①login.jsp如下
<body>
<form action="login.action">
用户:<input type="text" name="username"><p>
密码:<input type="password" name="password"><p>
<input type="submit" value="登入">
</form>
</body>
②strust.xml如下
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<package name="strust2" extends="struts-default">
<action name="login" class="com/strust2/action/LoginAction">
<result name="success">/login_success.jsp</result>
<result name="error">/login_error.jsp</result>
</action>
</package>
</struts>
③web.xml如下
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Struts Blank</display-name>
<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>

运行时报出There is no Action mapped for namespace [/] and action name [login] associated with context path [/Strust2]哪位高手指点一下,不胜感激啊
展开
 我来答
总是不费吹灰8297
推荐于2018-03-21 · TA获得超过383个赞
知道小有建树答主
回答量:520
采纳率:61%
帮助的人:98.2万
展开全部
两种解决方法,一:去掉你的package 中的namespace或者使其="", 二:假设你的namespace为/x,那么你的action 提交名需写作 action="/x/login",要是不对的话,你写做action="x/login"试一下,第二种方法我没试。
战争机器猫猫
2014-12-19 · 超过22用户采纳过TA的回答
知道答主
回答量:80
采纳率:0%
帮助的人:38.9万
展开全部
<package name="strust2" namespace="/" extends="struts-default">

<action name="login.action" class="com/strust2/action/LoginAction">

<form action="/login.action">

namespace决定了action的访问路径,默认为"",可以接收所有路径的action
namespace可以写为/,或者/xxx,或者/xxx/yyy,对应的action访问路径为/index.action,
/xxx/index.action,或者/xxx/yyy/index.action.<br/>
namespace最好也用模块来进行命名
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式