边学边做struts1.1(包括源代码下载包)
作者:林宣武 著作权所有引用请带上作者名字
一.Java的开发环境及开发过程
1. java的开发环境:
http://www.cvshome.org cvs代码的版本控制
window 2000
eclipse3.0.1: http://eclipse.openwebeng.com/downloads/drops/R-3.0.1-200409161125/index.php
tomcatv3Plugin: http://www.sysdeo.com/eclipse/tomcatPlugin.html
tomcat: http://www.apache.org/dist/jakarta/
jdk: http://java.sun.com/j2se/1.4.2/download.html
struts 1.2.4 : http://www.apache.org/dist/jakarta/struts/
2.安装过程
安装: jdk –> tomcat –>eclipse
把 tomcatv3Plugin解压到 eclipse目录中
cvs , eclipse 连接
常见问题:
3.开发过程
(一)详细的步骤
(1.启动eclipse 并建立一个java Project (teststruts)
并在其下建立一个如下目录结构:
src(source Folder) 当前项目私用内容(如action 及不可以被其他项目公用的部份)
web(Folder) 当前项目的页面显示内容 (是tomcat 的web root path)
必须包括WEB-INF 及其下的 lib ,classes目录
TUtil(source Folder) 通用功能模块:可以被其他的项目录再调用
TStruts(source Folder) 本项目的struts中的 扩展模块, 扩展了struts中的框架内容
OtherSrc(source Folder) 本项目中用到的lib包的中源代码, 可以用于提高开发速度
,和生成javadoc的作用(struts-1.2.4-src, jdk-src……)
Test(source Folder) junit 的测试内容
可建一个doc project这样的可以把所有的 文档在一起了
把 struts-lib包内容拷到 /web/WEB-INF/lib中
(2.为project -> properties
a. tomcat context name: /teststruts web application root: /web
b.java build path :
(a. Libraries-> add jars -> 把/web/WEB-INF/lib中的jar 全加入列表中
(b. Libraries-> add Extend jars -> 把 tomcat 下的 comom/lib/servlet.jar加入
(c. Default out folder : teststruts/web/WEB-INF/classes
(3..为struts 1.2.4 class 增加 src中的内容 方法: 在查看class内容时有一个 add source 按钮
(4. 增加 web.xml ,struts-config.xml
web.xml内容:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<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>2</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<taglib>
<taglib-uri>struts-bean</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-bean.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>struts-html</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-html.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>struts-logic</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-logic.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>struts-nested</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-nested.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>struts-tiles</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-tiles.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>struts-validator</taglib-uri>
<taglib-location>/WEB-INF/lib/struts-html.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>html-self</taglib-uri>
<taglib-location>/WEB-INF/lib/html-self.tld</taglib-location>
</taglib>
</web-app>
struts-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<form-beans>
</form-beans>
<global-forwards>
<forward contextRelative="true" name="Login" path="/login.goto.do" redirect="false"/>
<forward contextRelative="true" name="Message" path="/message.jsp" redirect="false"/>
</global-forwards>
<action-mappings>
<action path="/login" type="com.lxw.action.LoginAction" name="userForm" input="/user/login.jsp"/>
</action-mappings>
<message-resources parameter="com.lxw.struts.ApplicationResources"/>
</struts-config>
(5.增加 action , 并在struts-config.xml增加记录
(一 struts-config.xml
a. form-beans记录
<form-bean name="userForm" type="org.apache.struts.action.DynaActionForm">
<form-property name="username" type="java.lang.String"/>
<form-property name="password" type="java.lang.String"/>