something about struts

一、在开发时可以采用的一个开发流程如下(引自资料3):

  1. 收集和定义应用需求。

  2. 基于数据采集和显示的原则定义和开发"屏幕显示"需求 。

  3. 为每一个"屏幕显示"定义访问路径。

  4. 定义ActionMappings建立到应用业务逻辑之间的联系。

  5. 开发满足"屏幕显示"需求的所有支持对象。

  6. 基于每一个"屏幕显示"需求提供的数据属性来创建对应的ActionForm对象

  7. 开发被ActionMapping调用的Action对象。

  8. 开发应用业务逻辑对象 (Bean,EJB,等等)。

  9. 对应ActionMapping设计的流程创建JSP页面。

  10. 建立合适的配置文件struts-config.xml , web.xml。

  11. 开发/测试/部署

二、具体在使用Struts框架时,对应各个部分的开发工作主要包括:

  1. Model部分:采用JavaBean和EJB组件,设计和实现系统的业务逻辑。根据不同的请求从Action派生具体Action处理对象。完成"做什么"的任务来调用由Bean构成的业务组件。创建由ActionForm 的派生类实现对客户端表单数据的封装。

  2. Controller部分:Struts为我们提供了核心控制部分的实现。我们只需要配置ActionMapping对象

  3. View部分:为了使用Model中的ActionForm 对象,我们必须用Struts提供的自定义标记创建HTML 表单。利用Struts提供的自定义标记库编写用户界面把应用逻辑和显示逻辑分离。Struts框架通过这些自定义标记建立了View和Model之间的联系。Struts的自定义标记还提供了很多定制页面的功能。

  4. 同时需要编辑两个配置文件:web.xml和struts-config.xml。通过它们配置Struts系统中的各个模块之间的交互。

三、两个配置文件:web.xml和struts-config.xml

web.xml文件的配置:

web应用中的web.xml是第一个要配置的地方,它描述了系统的Controller对象。在web.xml中增加如下标记

 

<servlet>

        <servlet-name>action</servlet-name>

<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>

        <init-param>

               <param-name>application</param-name>

        ······

</servlet>

说明:这个servlet对象就是Struts提供的Controller,还可以为它指定初始化参数,比如对系统应用属性的支持。

 

<servlet-mapping>

        <servlet-name>action</servlet-name>

        <url-pattern>*.do</url-pattern>

</servelt-mapping>

说明:实现客户请求的url信息和服务器端具体处理的映射关系。

 

<taglib>

        <taglib-url>/WEB-INF/struts-bean.tld</taglib-url>

        <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>

</taglib>

·······

说明:添加对Struts提供的应用所使用的自定义标记库的引用。

struts-config.xml文件的配置:

struts-config.xml是用于建立Controller和Model之间的关系的。它描述了Controller所使用的把请求对应到具体处理的法则,同时它还描述了客户提供的数据与ActionForm组件的对应映射关系。

struts-config.xml中增加如下标记

 

<form-beans>

        <form-bean name="loginForm" type="loginForm" />

</form-beans>

说明:<form-bean>标记描述一个具体的ActionForm子类对象,通过它和JSP页面中的自定标记的结合使用可以实现ActionForm和View之间的数据映射。

 

<action-mappings>

<action

path="/login"

type="loginAction"

name="loginForm"

input="/login.jsp" ··· />

</action-mappings>

说明:<action-mappings>标记描述了请求和处理的一对一映射关系。input和path属性唯一的标记了客户端的一个请求,name属性描述封装客户端的数据的ActionForm子类对象。Type属性描述处理这个请求的Action子类对象。

通过对两个配置文件的配置,把Struts框架中MVC的各个部分联系起来,实现一个真正的MVC系统

 

  1. 关于actionmapping:

Table 3.5 ActionMapping settings

Property Purpose

path        A unique identifier for this mapping. It is included in the web address, as in http://localhost:8080/logon/LogonSubmit.do.

type     The Action object to call when the path is requested.

name     The JavaBean helper (ActionForm) to use with an HTML form.

scope    A property that specifies whether to store the helper in the request or the session.

Validate    A property that specifies whether to call the standard validate method on the form

bean     helper (specified by name) before calling the Action object (specified by type).

input    A property that specifies where to send control if the validate method returns false.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值