首页 > 网站 > WEB开发 > 正文

Struts框架(一)——简介

2024-04-27 15:06:54
字体:
来源:转载
供稿:网友

引言:

              Struts——一个web应框架。

概述:

              Struts基于MVC的一个web开源框架,也是一个表示层的框架,只能用于Web项目。

内容:

              一 优缺点:

             (1)优点:

                    1)这是一个开源框架,能让开发人员更深入的了解其内部实现机制和原理。

                    2)框架自带的标签库,非常灵活,提高了开发人员的工作效率。

                    3)页面导航使系统的导航线路更加清晰,通过框架配置文件,就可以配置系统各个页面的导航关系,能极大提高维护的效率和质量。

                    4)提供异常处理机制。

                    5)数据库连接池管理,开发人员可以花更多精力在业务逻辑的实现上。    

             (2)缺点:

                    1)学习成本较高

                    2)Struts将MVC的控制层又进行了分层,增加了复杂度。

              二 工作原理

                     通过一副图展示一下:

                         

                    (1)Web客户端发出请求,被在web.xml配置文件中配置的ActionServlet截获,同时暴露了struts-config.xml配置文件的路径,调用该配置文件。

                    (2)ActionServlet通过读取struts-config.xml配置文件,将请求信息映射至业务逻辑层Action工具类。

                    (3)Action类与Model层进行交互,实现数据的增删改查等操作。

                    (4)Action对数据操作完毕,将命令返回至ActionServlet。

                    (5)ActionServlet收到该命令之后,转发到相应的jsp页面。

                    (6)JSP给予Web客户端一个响应。

         三 实例(用户登录)

                        1 jsp页面代码:关键action与web.xml配置的匹配拦截相一致,同时method采用post,安全性较高。             

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>用户登录</title></head><body>	<form action="login.do" method="post">		用户:<input type="text" name="username"><br>		密码:<input type="text" name="passWord"><br>		<input type="submit" value="登录"> 	</form></body></html>              2  web.xml配置文件:配置servlet和拦截web客户端的url请求。

<?xml version="1.0" encoding="UTF-8"?><web-app version="2.5" 	xmlns="http://java.sun.com/xml/ns/javaee" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">  <display-name></display-name>	  <welcome-file-list>    <welcome-file>index.jsp</welcome-file>  </welcome-file-list>   <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>  </servlet>  <servlet-mapping>    <servlet-name>action</servlet-name>    <url-pattern>*.do</url-pattern>  </servlet-mapping> </web-app>             3 创建表单实体类

package com.liming.struts;import org.apache.struts.action.ActionForm;/** *  * 登录ActionForm,负责表单收集数据 * 表单的属性必须和ActionForm中的get和set的属性一致 * @author LM * */@SupPRessWarnings("serial")public class LoginActionForm extends ActionForm {	private String username;		private String password;	public String getUsername() {		return username;	}	public void setUsername(String username) {		this.username = username;	}	public String getPassword() {		return password;	}	public void setPassword(String password) {		this.password = password;	}}                      4 创建业务逻辑Action工具类:用来接收请求信息,操作数据,并返回转向信息。
package com.liming.struts;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.struts.action.Action;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionForward;import org.apache.struts.action.ActionMapping;/** * 登录Action * 负责取得表单数据,调用业务逻辑、返回转向信息 * @author LM * */public class LoginAction extends Action {	@Override	public ActionForward execute(ActionMapping mapping, ActionForm form,			HttpServletRequest request, HttpServletResponse response)			throws Exception {				LoginActionForm laf = (LoginActionForm)form;		String username = laf.getUsername();		String password = laf.getPassword();		if("admin".equals(username) && "admin".equals(password)){			//登录成功			return mapping.findForward("success");		}else {			//登录失败			return mapping.findForward("error");		}			}	}                      5 Struts核心配置文件,配置ActionForm, ActionBean,异常的转向,国际化资源文件的位置, 插件(便于和Spring集成)等          
<?xml version="1.0" encoding="ISO-8859-1" ?><!DOCTYPE struts-config PUBLIC          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"          "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd"><struts-config>	<form-beans>		<form-bean name="loginForm" type="com.liming.struts.LoginActionForm"/>	</form-beans>		<action-mappings>		<action path="/login" 				type="com.liming.struts.LoginAction" 				name="loginForm"				scope="request"				>				<forward name="success" path="/success.jsp"/>				<forward name="error" path="/error.jsp"/>		</action>	</action-mappings></struts-config>

总结:

               Struts框架是MVC设计模式的一个优秀实现。 Struts定义了通用的Controller(控制器),通过配置文件(通常是 Struts -config.xml)隔离Model(模型)和View(视图),以Action的概念以对用户请求进行了封装,使代码更加清晰易读。 Struts还提供了自动将请求的数据填充到对象中以及页面标签等简化编码的工具。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表