Struts1.x系列教程(1):用MyEclipse开发第一个Struts程序 - 编程入门网
;servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>debug</param-name>
<param-value>3</param-value>
</init-param>
<init-param>
<param-name>detail</param-name>
<param-value>3</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
到目前为止,samples工程已经完全支持Struts了。读者可以看到,如果不使用MyEclipse,那么上面所列出的配置文件的内容都必须手工输入。因此,使用MyEclipse来开发Struts程序可以省去很多配置xml文件的工作。 Struts1.x系列教程(1):用MyEclipse开发第一个Struts程序(3)时间:2011-01-10 BlogJava 银河使者三、实现程序的首页(index.jsp) 首先在<samples工程目录>中建立一个mystruts目录,然后在<samples工程目录>" mystruts目录中建立一个index.jsp文件,这个文件的内容如下。 <%@ page pageEncoding="GBK"%> <%-- 引用Struts tag--%> <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> <html> <head> <title>主界面</title> </head> <body> <table align="center" cellpadding="10" width="100%"> <tr> <td align="right" width="50%"> <%-- 使用Struts tag--%> <html:link forward="newProduct">录入产品信息</html:link> </td> <td> <html:link forward="searchProduct">查询产品信息</html:link> </td> </tr> </table> </body> </html> 在MyEclipse中启动Tomcat(如果Tomcat处于启动状态,在修改完配置文件后,建议在MyEclipse的Servers页重新发布samples工程,以使修改生效)。在IE中输入如下的URL: http://localhost:8080/samples/mystruts/index.jsp 我们发现在输入上面的URL后,在IE中并未显示正确的运行结果,而是抛出了如下的异常: java.net.MalformedURLException: Cannot retrieve ActionForward named newProduct 这个异常表明程序并未找到一个叫newProduct的forward(forward将在后面详细地讲述)。因此,可以断定,在JSP中使用forward时,这个forward必须存在。下面我们来添加index.jsp页面中所使用的两个forward:newProduct和searchProduct。这两个forward分别引向了建立产品信息的页面(newProduct.jsp)和查询产品信息的页面(searchProduct.jsp)。我们可以在struts-config.xml文件中<struts-config>节点中添加两个全局的forward,代码如下: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |