基于JSP的网上书店系统的设计英文翻译.doc
文本预览下载声明
Struts——MVC 的一种开放源码实现 专业班级:网络06-1班 姓名:耿豪 学号:12
PAGE
PAGE 21
郑州轻工业学院
本科毕业设计(论文)
——英文翻译
题 目 Struts——MVC 的一种开放源码实现
学生姓名 耿 豪
专业班级 网络工程06-1班
学 号 12
院 (系) 计算机与通信工程学院
指导教师(职称) 李健勇(副教授)
完成时间 2010年6月10日
英文原文
Struts—an open-source MVC implementation
Malcolm Davis
IBM System Journal,2006,44(2):33-37
Abstract
This article introduces Struts, a Model-View-Controller implementation that uses servlets and JavaServer Pages (JSP) technology. Struts can help you control change in your Web project and promote specialization. Even if you never implement a system with Struts, you may get some ideas for your future servlets and JSP page implementation.
1 Introduction
Kids in grade school put HTML pages on the Internet. However, there is a monumental difference between a grade school page and a professionally developed Web site. The page designer (or HTML developer) must understand colors, the customer, product flow, page layout, browser compatibility, image creation, JavaScript, and more. Putting a great looking site together takes a lot of work, and most Java developers are more interested in creating a great looking object interface than a user interface. JavaServer Pages (JSP) technology provides the glue between the page designer and the Java developer.
If you have worked on a large-scale Web application, you understand the term change. Model-View-Controller (MVC) is a design pattern put together to help control change. MVC decouples interface from business logic and data. Struts is an MVC implementation that uses Servlets 2.2 and JSP 1.1 tags, from the J2EE specifications, as part of the implementation. You may never implement a system with Struts, but looking at Struts may give you some ideas on your future Servlets and JSP implementations.
2 Model-View-Controller (MVC)
显示全部