严重警告:只关心程序的人请跳过<!----><o:p></o:p>
事先声明:本篇全是介绍性的东西,根本没谈到编程。本篇所有内容均不是本人作品。也没有修改的地方,只是删除了些内容。为什么要加这篇内容?看了能明白什么?等等诸类问题,本人概不知道,但要声明:觉得不是废话。<o:p></o:p>
设计模式(Design Patten)
简单来说,Design Patten 就是一个常用的方案。 在我们的开发过程中,经常会遇到一些相同或者相近的问题,每次我们都会去寻找一个新的解决方法,为了节省时间提高效率,我们提供一些能够解决这些常见问题的,被证实可行的方案,构成一个统一的资源库。
一个Design Patten描述了一个被证实可行的方案。这些方案非常普通,是有完整定义的最常用的模式。 这些模式可以被重用,有良好的伸缩性。
MVC设计模式<o:p></o:p>
代码分离,显示与逻辑解耦
验证处理
流程控制
更新应用程序的状态
MVC 通过将问题分为三个类别来帮助解决单一模块方法所遇到的某些问题,这就
Model(模型) 、View (视图) 、Controller(控制器) <o:p></o:p>
Model(模型) <o:p></o:p>
模型包含了应用程序的核心,它封装了应用程序的数据结构和事务逻辑,集中体现了应用程序的状态。有时候它仅包含了状态信息,因为它并不了解视窗或控制器的信息(任何时候它对视图或控制器都一无所知 )。
JavaBean及 EJB 很适合扮演这个角色,因为它能够处理绝大部分事务逻辑和数据结构。它能够与数据库或文件系统进行交互,承担维护应用程序数据的责任。
View(视图) <o:p></o:p>
视图实现模块的外观, 它是应用程序的外在表现。它可以访问模型的数据, 却不了解模型的情况, 同时它也不了解控制器的情况。当模型发生改变时, 视图会得到通知, 它可以访问模型的数据,但不能改变这些数据 。
Controller(控制器) <o:p></o:p>
控制器对用户的输入做出反应并且将模型和视图联系在一起。servlet能够接受客户端的HTTP请求, 并且根据需要创建所需的JavaBean或者EJB,然后将产生的变化通知给视窗 。
面向WEB应用的 MVC Model 2 模式 <o:p></o:p>
Web应用的特点:
客户机和服务器的无状态连接
由于HTTP本身缺乏状态信息,客户端必须对服务器进行再查询才能发现由输入所造成的改变,在这种情况下,控制器不能将应用程序的改变通知视图。
实现视图所用的技术与实现模型或控制器的技术不同。
也可以使用Java代码来生成所有的Html,但这样会产生更多问题。
对于 Web应用,需要修改标准的 MVC 形式。下图显示了 MVC 的 Web 改写版,通常也称为 MVC Model 2 或 MVC 2。
<o:p> </o:p>
<!----><v:shapetype o:spt="75" coordsize="21600,21600" stroked="f" id="_x0000_t75" filled="f" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path gradientshapeok="t" o:extrusionok="f" o:connecttype="rect"></v:path><o:lock v:ext="edit" aspectratio="t"></o:lock></v:shapetype><v:shape type="#_x0000_t75" id="_x0000_s1027" style="WIDTH: 441pt; HEIGHT: 270.85pt; mso-position-horizontal-relative: char; mso-position-vertical-relative: line"><v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\11\clip_image001.png" o:title="mvc"></v:imagedata><!----><w:wrap type="none"></w:wrap><w:anchorlock></w:anchorlock></v:shape>
Struts - - - MVC 2 的一种实现 <o:p></o:p>
它是MVC Model 2 的开放源代码的实现
是一组相互协作的类、servlet 和 JSP 标记,它们组成一个可重用的设计
是一个框架,使用Struts也就决定了你的Application的框架
包含了丰富的标记库和独立于该框架工作的实用程序类,可以当成库使用
是Apache小组的一个子项目
Struts 概览 <o:p></o:p>
<o:p> </o:p>
<v:shape type="#_x0000_t75" id="_x0000_s1026" alt="Struts 概览" style="WIDTH: 459pt; HEIGHT: 167pt; mso-position-horizontal-relative: char; mso-position-vertical-relative: line"><v:imagedata o:href="http://www.huihoo.com/java/struts/mvc2_struts.gif" src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\11\clip_image003.png"></v:imagedata><w:wrap type="none"></w:wrap><w:anchorlock></w:anchorlock></v:shape>
<o:p> </o:p>
<o:p> </o:p>
Client browser(客户浏览器) <o:p></o:p>
来自客户浏览器的每个 HTTP 请求创建一个事件。Web 容器将用一个 HTTP request 作出响应。
Controller(控制器) <o:p></o:p>
控制器接收来自浏览器的请求,并决定将这个请求发往何处。就 Struts 而言,控制器是以 servlet 实现的一个命令设计模式。struts-config.xml 文件配置控制器。
业务逻辑 <o:p></o:p>
业务逻辑更新模型的状态,并帮助控制应用程序的流程。就 Struts 而言,这是通过作为实际业务逻辑“瘦”包装的 Action 类完成的。
Model(模型)的状态<o:p></o:p>
模型表示应用程序的状态。业务对象更新应用程序的状态。ActionForm bean 在会话级或请求级表示模型的状态,而不是在持久级。JSP 文件使用 JSP 标记读取来自 ActionForm bean 的信息。
View(视图)<o:p></o:p>
视图就是一个 JSP 文件。其中没有流程逻辑,没有业务逻辑,也没有模型信息 -- 只有标记。标记是使 Struts 有别于其他框架(如 Velocity)的因素之一。
Struts框架中所使用的组件<o:p></o:p>
<v:group coordsize="9183,4599" id="_x0000_s1028" coordorigin="2355,9348" editas="canvas" style="WIDTH: 415.3pt; HEIGHT: 207.65pt; mso-position-horizontal-relative: char; mso-position-vertical-relative: line"><o:lock v:ext="edit" aspectratio="t"></o:lock><v:shape type="#_x0000_t75" id="_x0000_s1029" o:preferrelative="f" style="LEFT: 2355px; WIDTH: 9183px; POSITION: absolute; TOP: 9348px; HEIGHT: 4599px"><v:fill o:detectmouseclick="t"></v:fill><v:path o:extrusionok="t" o:connecttype="none"></v:path><o:lock text="t" v:ext="edit"></o:lock></v:shape><v:group coordsize="3580,2688" id="_x0000_s1030" style="LEFT: 2363px; WIDTH: 9167px; POSITION: absolute; TOP: 9353px; HEIGHT: 4589px"><v:group coordsize="1790,384" id="_x0000_s1031" style="WIDTH: 1790px; POSITION: absolute; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1032" filled="f" style="LEFT: 43px; WIDTH: 1704px; POSITION: absolute; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
ActionServlet<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1033" filled="f" strokeweight="19e-5mm" style="WIDTH: 1790px; POSITION: absolute; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1034" coordorigin="1790" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1035" filled="f" style="LEFT: 1833px; WIDTH: 1704px; POSITION: absolute; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
控制器<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1036" filled="f" strokeweight="19e-5mm" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1037" coordorigin=",384" style="WIDTH: 1790px; POSITION: absolute; TOP: 384px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1038" filled="f" style="LEFT: 43px; WIDTH: 1704px; POSITION: absolute; TOP: 384px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
ActionClass<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1039" filled="f" strokeweight="19e-5mm" style="WIDTH: 1790px; POSITION: absolute; TOP: 384px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1040" coordorigin="1790,384" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 384px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1041" filled="f" style="LEFT: 1833px; WIDTH: 1704px; POSITION: absolute; TOP: 384px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
包含事务逻辑<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1042" filled="f" strokeweight="19e-5mm" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 384px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1043" coordorigin=",768" style="WIDTH: 1790px; POSITION: absolute; TOP: 768px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1044" filled="f" style="LEFT: 43px; WIDTH: 1704px; POSITION: absolute; TOP: 768px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
ActionForm<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1045" filled="f" strokeweight="19e-5mm" style="WIDTH: 1790px; POSITION: absolute; TOP: 768px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1046" coordorigin="1790,768" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 768px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1047" filled="f" style="LEFT: 1833px; WIDTH: 1704px; POSITION: absolute; TOP: 768px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
显示模块数据<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1048" filled="f" strokeweight="19e-5mm" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 768px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1049" coordorigin=",1152" style="WIDTH: 1790px; POSITION: absolute; TOP: 1152px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1050" filled="f" style="LEFT: 43px; WIDTH: 1704px; POSITION: absolute; TOP: 1152px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
ActionMapping<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1051" filled="f" strokeweight="19e-5mm" style="WIDTH: 1790px; POSITION: absolute; TOP: 1152px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1052" coordorigin="1790,1152" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 1152px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1053" filled="f" style="LEFT: 1833px; WIDTH: 1704px; POSITION: absolute; TOP: 1152px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
帮助控制器将请求映射到操作<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1054" filled="f" strokeweight="19e-5mm" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 1152px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1055" coordorigin=",1536" style="WIDTH: 1790px; POSITION: absolute; TOP: 1536px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1056" filled="f" style="LEFT: 43px; WIDTH: 1704px; POSITION: absolute; TOP: 1536px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
ActionForward<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1057" filled="f" strokeweight="19e-5mm" style="WIDTH: 1790px; POSITION: absolute; TOP: 1536px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1058" coordorigin="1790,1536" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 1536px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1059" filled="f" style="LEFT: 1833px; WIDTH: 1704px; POSITION: absolute; TOP: 1536px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
用来指示操作转移的对象<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1060" filled="f" strokeweight="19e-5mm" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 1536px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1061" coordorigin=",1920" style="WIDTH: 1790px; POSITION: absolute; TOP: 1920px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1062" filled="f" style="LEFT: 43px; WIDTH: 1704px; POSITION: absolute; TOP: 1920px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
ActionError<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1063" filled="f" strokeweight="19e-5mm" style="WIDTH: 1790px; POSITION: absolute; TOP: 1920px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1064" coordorigin="1790,1920" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 1920px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1065" filled="f" style="LEFT: 1833px; WIDTH: 1704px; POSITION: absolute; TOP: 1920px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
用来存储和回收错误<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1066" filled="f" strokeweight="19e-5mm" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 1920px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1067" coordorigin=",2304" style="WIDTH: 1790px; POSITION: absolute; TOP: 2304px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1068" filled="f" style="LEFT: 43px; WIDTH: 1704px; POSITION: absolute; TOP: 2304px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
Struts标记库<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1069" filled="f" strokeweight="19e-5mm" style="WIDTH: 1790px; POSITION: absolute; TOP: 2304px; HEIGHT: 384px"></v:rect></v:group><v:group coordsize="1790,384" id="_x0000_s1070" coordorigin="1790,2304" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 2304px; HEIGHT: 384px"><v:rect fillcolor="#0c9" stroked="f" id="_x0000_s1071" filled="f" style="LEFT: 1833px; WIDTH: 1704px; POSITION: absolute; TOP: 2304px; HEIGHT: 384px"><v:textbox inset="2.00661mm,1.0033mm,2.00661mm,1.0033mm">
可以减轻开发显示层次的工作<o:p></o:p> <o:p> </o:p> |
</v:textbox></v:rect><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1072" filled="f" strokeweight="19e-5mm" style="LEFT: 1790px; WIDTH: 1790px; POSITION: absolute; TOP: 2304px; HEIGHT: 384px"></v:rect></v:group></v:group><v:rect strokecolor="#a0a0a0" fillcolor="#0c9" id="_x0000_s1073" filled="f" style="LEFT: 2355px; WIDTH: 9183px; POSITION: absolute; TOP: 9348px; HEIGHT: 4599px"></v:rect><w:wrap type="none"></w:wrap><w:anchorlock></w:anchorlock></v:group>
<o:p></o:p> ActionServlet 类 <o:p></o:p>
控制器组件是由org.apache.struts.action.ActionServlet类实现的,这个类是javax.servlet.http.HttpServlet类的扩展,它是这一框架的核心 。
控制器将事件(事件通常是 HTTP post)映射到类的一个 servlet。使用配置文件,不必对这些值进行硬编码。
ActionServlet (Command) 创建并使用 Action、ActionForm 和 ActionForward。初始化时读取 struts-config.xml 文件配置该 Command。在创建 Web 项目时,需要扩展 Action 和 ActionForm 来解决特定的问题。
Struts controller的基本功能<o:p></o:p>
1. 截获用户的Http请求
2.把这个请求映射到相应的Action类,如果这是此类收到的第一个请求, 将初始化实例并缓寸
3. 创建或发现一个ActionForm bean实例(看配置文件是否定义),然后将请求过程移植到bean.
4. 调用Action实例的perform()方法并将ActioForm bean,Action Mapping对象,request和response对象传给它
5. perform返回一个ActionForword对象,此对象连接到相应的jsp页面
ActionServlet配置
我们需要在web.xml中声明ActionServlet,并且将它配置成启动时进行加载
大多数情况下,标准的servlet就能够满足用户需要
<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>
<init-param>
<param-name>detail</param-name>
<param-value>2</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
Action类 <o:p></o:p>
所有Action类都扩展org.apache.struts.action.Action类,并且覆盖类中定义的perform()方法。
Action 类是业务逻辑的一个包装 ,用途是将 HttpServletRequest 转换为业务逻辑。
当事件进展到这一步时,输入表单数据(或 HTML 表单数据)已被从请求流中提取出来并转移到 ActionForm 类中。 ActionForm 类被传递到Actino类,这一切都是自动完成的。
扩展 Action 类时要注意简
分享到:
相关推荐
### Struts1与Struts2的主要区别 #### 1. Action类的设计差异 - **Struts1**: 在Struts1框架中,Action类必须继承自一个抽象类`org.apache.struts.action.Action`。这种方式可能导致的问题是代码灵活性较低,尤其...
【Struts2.0框架介绍】 Struts2.0是一个基于MVC(Model-View-Controller)模式的Java Web应用程序框架,它源自于WebWork框架,并与Apache Struts 1.x合并,形成了一个新的、功能更加强大的框架。Struts2.0在设计上...
### Struts2 第一篇:流程篇 #### 一、Struts2是什么? ##### 1、Struts2在三层架构开发中的位置 Struts2作为一款轻量级的Java Web开发框架,主要应用于三层架构(即表示层、业务逻辑层、数据访问层)中的表示层...
- **Struts1**:由于Action与Servlet API紧密耦合,测试较为困难,需要使用如Struts TestCase的第三方工具。 - **Struts2**:Action可以通过依赖注入进行测试,使得测试更加容易和独立。 5. **输入捕获**: - **...
它是Apache软件基金会下的一个开源项目,基于Model-View-Controller(MVC)设计模式,提供了高度灵活的控制层,使开发者可以更加专注于业务逻辑的实现。 1. **Struts2的核心概念** - **Action**:Action是处理用户...
它通过引入MVC设计模式,将业务逻辑、数据模型和用户界面分离,使代码结构更清晰。 2. **MVC模式**: MVC模式是软件设计中的经典模式,Model代表数据模型,View负责展示,Controller处理用户请求并协调Model和View...
Struts2 是一个基于MVC设计模式的Web应用框架,用于构建动态、数据驱动的Java Web应用。Struts2.1.8是该框架的一个稳定版本,它提供了一种模型驱动的方式处理用户请求,并且与多种视图技术(如JSP、FreeMarker)兼容...
4. **第四章:MVC模式** - 解释MVC设计模式的基本原理,以及Struts2如何实现这一模式。 5. **第五章:Action与Result** - 详述Action类的编写和Result的使用,以及Action结果的定向。 6. **第六章:配置文件详解** -...
Struts2.0是Java Web开发中的一个强大框架,它基于Model-View-Controller(MVC)设计模式,为开发者提供了构建可维护性高、结构清晰的Web应用程序的工具。这个"Struts2.0视频教程+struts2.0中文教程"包含的资源旨在...
Struts2是一个基于MVC(Model-View-Controller)设计模式的开源Java Web框架,它在Web应用开发中被广泛使用。Struts2的核心在于提供一个强大的、灵活的、可扩展的架构,使得开发者能够更方便地实现业务逻辑与表现层...
**Struts2** 是一款流行的 Java Web 开发框架,它遵循 MVC (Model-View-Controller) 设计模式,旨在简化 Web 应用程序的开发过程。Struts2 提供了一种统一的方法来构建 Web 应用程序,并且具有良好的扩展性和灵活性...
总之,Struts2通过拦截器和MVC设计模式,简化了Java Web应用的开发,使得开发者能更专注于业务逻辑,而不是底层的请求处理。理解和掌握Struts2的工作流程,对于提升开发效率和代码质量有着重要的意义。
Struts2是Java Web开发中一个非常重要的框架,它基于MVC(Model-View-Controller)设计模式,为开发者提供了一种结构化和可扩展的方式来构建应用程序。在"struts2课件第四天"的学习中,我们将深入探讨Struts2的核心...
Struts2是一个非常著名的Java Web框架,它基于MVC(Model-View-Controller)设计模式,为开发者提供了构建可维护性、可扩展性极强的Web应用的强大工具。标题中的"struts-2.3.24所有架包"表明这是一个包含Struts2框架...
2. Struts2框架的特点:Struts2框架主要的特点是它采用了MVC(Model-View-Controller)的设计模式,这种模式可以将应用程序的输入、处理和输出分离开来,提高了程序的可维护性和可扩展性。Struts2还具有强大的标签库...
- **STRUTS2 的 Action 设计更灵活:**与 STRUTS1 中 Action 必须继承自 `Action` 类不同,STRUTS2 允许 Action 作为 POJO(Plain Old Java Object)存在,这意味着开发者可以更加自由地设计业务逻辑类。...
它提供了MVC(Model-View-Controller)设计模式的实现,帮助开发者更好地组织和管理代码,提升开发效率,并且提供了良好的可扩展性。本资料"struts入门与实践.zip"是一个压缩包,包含了关于Struts框架的基础知识和...