Struts1.x系列教程(1):用MyEclipse开发第一个Struts程序 - 编程入门网
<global-forwards> <forward name="newProduct" path="/mystruts/newProduct.jsp" /> <forward name="searchProduct" path="/mystruts/searchProduct.jsp" /></global-forwards>
上面的代码中所示的newProduct.jsp和searchProduct.jsp目前并不存在(将在以后实现这两个JSP页面),现在重新输入上述的URL,会得到如图2所示的效果。 图2 如果想让index.jsp成为默认的JSP页面,可以在web.xml中的<welcome-file-list>节点中加入如下的内容:
这时在IE中只要输入如下的URL就可以访问index.jsp页面了。 http://localhost:8080/samples/mystruts Struts1.x系列教程(1):用MyEclipse开发第一个Struts程序(4)时间:2011-01-10 BlogJava 银河使者四、实现添加和查询产品信息页面 在本节中主要实现了用于输入产品信息(newProduct.jsp)和查询产品信息(searchProduct.jsp)的JSP页面。 在newProduct.jsp页面中有一个form,在form中含有三个文本框,用于分别输入产品ID、产品名称和产品价格。 在<samples工程目录>"mystruts目录中建立一个newProduct.jsp文件,代码如下: <%@ page pageEncoding="GBK"%> <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> <html> <head> <title>录入产品信息</title> </head> <body> <%-- 向saveProduct动作提交产品信息 --%> <html:form action="saveProduct"> <table width="100%"> <tr> <td align="center"> 产品编号: <html:text property="productID" maxlength="4" /> <p> 产品名称: <html:text property="productName" /> <p> 产品价格: <html:text property="price" /> </td> </tr> <tr> <td align="center"> <br> <html:submit value=" 保存 " /> </td> </tr> </table> </html:form> </body> </html> 在searchProduct.jsp页面中有一个form,为了方便起见,在form中只提供了一个文本框用于对产品名称进行模糊查询。在<samples工程目录>" mystruts目录中建立一个searchProduct.jsp文件,代码如下: <%@ page pageEncoding="GBK"%> <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> <html> <head> <title>查询产品信息</title> </head> <body> <%-- 向searchProduct动作提交查询请求 --%> <html:form action="searchProduct"> <tab |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |