边学边做struts1.1(包括源代码下载包) --未完成

本文详细介绍了使用Eclipse和Tomcat开发Struts1.1应用的过程,包括环境搭建、常见错误处理,如web.xml配置错误和中文乱码问题。同时,文章讨论了自定义标签、多国语言处理、文件上传等核心功能,并提供了部分代码示例。作者林宣武分享了从开发环境配置到实际开发中遇到的问题及其解决方案。
摘要由CSDN通过智能技术生成

边学边做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"/>    

评论 12
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值