我创建了一个名为customer
的文件夹,并在其中放置了以下JSP文件
edit.jsp
,editsuccess.jsp
。
我的struts配置是
<action input="/customer/edit.jsp" name="Edit" path="/edit" scope="request" type="Controller.Editctr">
<forward name="success" path="/customer/editsuccess.jsp"/>
</action>
在此edit.jsp
输入页面中,editsuccess.jsp
是名为Editctr
的控制器(Servlet)的输出页面,控制器的路径为edit
。
这里我通过JSP
<form action="edit.do" method="post">
当我提交表单时,它会显示以下错误
HTTP状态404 - 请求了无效路径
我尝试了一些可能的改变方法,但我仍然无法修复它。
答案 0 :(得分:1)
如果您使用的是html表单标记,那么您应该正确映射该操作。
<form action="${pageContext.request.contextpath}/edit.do" method="post">
或使用html taglib
<%@ taglib prefix="html" uri="http://struts.apache.org/tags-html" %>
<html:form action="/edit" method="post">