404!!
HTTP Status 404 - /ssh1/product_save.action
type Status report
message /ssh1/product_save.action
description The requested resource is not available.
HTTP Status 404 - /ssh1/product_save.action
type Status report
message /ssh1/product_save.action
description The requested resource is not available.
2017-11-24
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<h1>保存商品的页面</h1>
<s:form action="product_save" method="post" namespace="/" theme="simple">
<table>
<tr>
<td>商品名称</td>
<td><s:textfield name="pname"/></td>
</tr>
<tr>
<td>商品价格</td>
<td><s:textfield name="price"/></td>
</tr>
<tr>
<td colspan=2><input type="submit" value="提交"/></td>
</tr>
</table>
</s:form>
</body>
<?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="ssh1" extends="struts-default" namespace="/">
<action name="product_*" method="{1}" class="productAction">
<result></result>
</action>
</package>
</struts>
举报