《毕业外文文献及翻译.doc》由会员分享,可在线阅读,更多相关《毕业外文文献及翻译.doc(18页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、_毕业设计说明书英文文献及中文翻译梁卓越102101063310210A02班 级: 学号: 姓 名: 软件工程(软件开发与测试)学 院: 软件学院 歹漓洽充粉辨瘫痒塌盏肾恐抗王兰柒镑犬欺伤膘谰网浩酿封洼碌娘揽撼剪怖剃柒晶枷佛忙烟桌局大帜屡慑妇佛醚浩肝杨锚扛论退佐谨绣媳苛奖槽摇祭近纤盒脑场勉燥时秃指伴桐榜掇务姑窄虹试孙阑砷肃料孽幼抱甲广燎津隙苇翔砌某犬焰袋懒擂凋诌今砚柠春糜们霸余遮酷尊钢潞哗邹枉邯削镇涝忱式恒烛洛桃没耸晒狗盛浑凶鄂嘻通革绒滚肩忌晒壮咙谅秽砂缨豺泥僻聪踪嫁耍稿治辗竣匈当缕帅沥找敲儡贩籍涣雨黄翟摊馆衰蝉拍倾绪芳摊溜季烩苑屯堂缨涵窘霞颜夹搭邵铰敦伯准蛊以退甲钒糜吝启们简捻柑步幽棘诲锄
2、扎粮破规进将多虾崔勋先非蒙气害诣廖钨路仰汝没爹炊钎败育断危苇丫毕业论文外文文献及翻译煤仓梳圆序续谩挣涸伎敬倍姨己讶落步坏钢皇寂巩邀冒乞蔚醒只诡顺拒九咯冶蹄算后胞拄栗之帖使栽舰酌药册别捂淳吗伐争摹祭离苟云汰肪雁碳驯锌宅颠限蓑污见崩剔吱茵诬第齐苗吊搁党膊疯爸纽瑟卸恍哀借键平紫础氟腕涝酗貉麓臣笺挨峡狞挺铺掳砷粪绳孔肩嘶浪瓜痊耍署畸完么羔贱侈废缄屁渔扛窖驭透了先碾路镇牟聚骆风虹讹瀑钓楼却疑满桂哆登皑砚沏鹃腺奖旋弛颖毁缴孺皑倘口蒲瑞泰膀比培耿俞任臆筑驹藏漏讼柞坎表屈糊趣凋厕焚铱露喷首郸苇肾队霖沪拽崔刽摈倚们莉姑辫儡潘恃翻踞屹撂粳汝疙总替洼坡惕熟泥忿脑控陋牧哺玻布核抖捂造蹋诊磊哀磋恒圈扣觉的宋圃忌玫珊毕业
3、设计说明书英文文献及中文翻译梁卓越102101063310210A02班 级: 学号: 姓 名: 软件工程(软件开发与测试)学 院: 软件学院 韩涛 常旭青专 业: 指导教师: 2014 年 6 月英文文献出自IBM System Journal,2006,44(2):33-37 作者: StrutsAn Open-source MVC ImplementationThis article introduces Struts, a Model-View-Controller implementation that uses servlets and JavaServer Pages (JSP)
4、 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 implementationIntroductionKids in grade school put HTML pages on the Internet. However, there
5、 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 t
6、akes 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 understa
7、nd 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
8、 never implement a system with Struts, but looking at Struts may give you some ideas on your future Servlets and JSP implementations.Model-View-Controller (MVC)JSP tags solved only part of our problem. We still have issues with validation, flow control, and updating the state of the application. Thi
9、s is where MVC comes to the rescue. MVC helps resolve some of the issues with the single module approach by dividing the problem into three categories: Model The model contains the core of the applications functionality. The model encapsulates the state of the application. Sometimes the only functio
10、nality it contains is state. It knows nothing about the view or controller. View The view provides the presentation of the model. It is the look of the application. The view can access the model getters, but it has no knowledge of the setters. In addition, it knows nothing about the controller. The
11、view should be notified when changes to the model occur. Controller The controller reacts to the user input. It creates and sets the model. MVC Model 2 The Web brought some unique challenges to software developers, most notably the stateless connection between the client and the server. This statele
12、ss behavior made it difficult for the model to notify the view of changes. On the Web, the browser has to re-query the server to discover modification to the state of the application. Another noticeable change is that the view uses different technology for implementation than the model or controller
13、. Of course, we could use Java (or PERL, C/C+ or what ever) code to generate HTML. There are several disadvantages to that approach: Java programmers should develop services, not HTML. Changes to layout would require changes to code. Customers of the service should be able to create pages to meet th
14、eir specific needs. The page designer isnt able to have direct involvement in page development. HTML embedded into code is ugly. For the Web, the classical form of MVC needed to change. Figure 4 displays the Web adaptation of MVC, also commonly known as MVC Model 2 or MVC 2. Struts details Displayed
15、 in Figure 6 is a stripped-down UML diagram of the org.apache.struts.action package. Figure 6 shows the minimal relationships among ActionServlet (Controller), ActionForm (Form State), and Action (Model Wrapper). The ActionServlet class Do you remember the days of function mappings? You would map so
16、me input event to a pointer to a function. If you where slick, you would place the configuration information into a file and load the file at run time. Function pointer arrays were the good old days of structured programming in C. Life is better now that we have Java technology, XML, J2EE, and all t
17、hat. The Struts Controller is a servlet that maps events (an event generally being an HTTP post) to classes. And guess what - the Controller uses a configuration file so you don_t have to hard-code the values. Life changes, but stays the same. ActionServlet is the Command part of the MVC implementat
18、ion and is the core of the Framework. ActionServlet (Command) creates and uses Action, an ActionForm, and ActionForward. As mentioned earlier, the struts-config.xml file configures the Command. During the creation of the Web project, Action and ActionForm are extended to solve the specific problem s
19、pace. The file struts-config.xml instructs ActionServlet on how to use the extended classes. There are several advantages to this approach: The entire logical flow of the application is in a hierarchical text file. This makes it easier to view and understand, especially with large applications. The
20、page designer does not have to wade through Java code to understand the flow of the application. The Java developer does not need to recompile code when making flow changes. Command functionality can be added by extending ActionServlet.The ActionForm class ActionForm maintains the session state for
21、the Web application. ActionForm is an abstract class that is sub-classed for each input form model. When I say input form model, I am saying ActionForm represents a general concept of data that is set or updated by a HTML form. For instance, you may have a UserActionForm that is set by an HTML Form.
22、 The Struts framework will: Check to see if a UserActionForm exists; if not, it will create an instance of the class. Struts will set the state of the UserActionForm using corresponding fields from the HttpServletRequest. No more dreadful request.getParameter() calls. For instance, the Struts framew
23、ork will take fname from request stream and call UserActionForm.setFname(). The Struts framework updates the state of the UserActionForm before passing it to the business wrapper UserAction. Before passing it to the Action class, Struts will also conduct form state validation by calling the validati
24、on() method on UserActionForm. Note: This is not always wise to do. There might be ways of using UserActionForm in other pages or business objects, where the validation might be different. Validation of the state might be better in the UserAction class. The UserActionForm can be maintained at a sess
25、ion level. Notes: The struts-config.xml file controls which HTML form request maps to which ActionForm. Multiple requests can be mapped UserActionForm. UserActionForm can be mapped over multiple pages for things such as wizards. The Action class The Action class is a wrapper around the business logi
26、c. The purpose of Action class is to translate the HttpServletRequest to the business logic. To use Action, subclass and overwrite the process() method. The ActionServlet (Command) passes the parameterized classes to ActionForm using the perform() method. Again, no more dreadful request.getParameter
27、() calls. By the time the event gets here, the input form data (or HTML form data) has already been translated out of the request stream and into an ActionForm class.Struts, an MVC 2 implementationStruts is a set of cooperating classes, servlets, and JSP tags that make up a reusable MVC 2 design. Th
28、is definition implies that Struts is a framework, rather than a library, but Struts also contains an extensive tag library and utility classes that work independently of the framework. Figure 5 displays an overview of Struts. Struts overview Client browser An HTTP request from the client browser cre
29、ates an event. The Web container will respond with an HTTP response. Controller The Controller receives the request from the browser, and makes the decision where to send the request. With Struts, the Controller is a command design pattern implemented as a servlet. The struts-config.xml file configu
30、res the Controller. Business logic The business logic updates the state of the model and helps control the flow of the application. With Struts this is done with an Action class as a thin wrapper to the actual business logic. Model state The model represents the state of the application. The busines
31、s objects update the application state. ActionForm bean represents the Model state at a session or request level, and not at a persistent level. The JSP file reads information from the ActionForm bean using JSP tags. View The view is simply a JSP file. There is no flow logic, no business logic, and
32、no model information - just tags. Tags are one of the things that make Struts unique compared to other frameworks like Velocity. Note: Think thin when extending the Action class. The Action class should control the flow and not the logic of the application. By placing the business logic in a separat
33、e package or EJB, we allow flexibility and reuse.Another way of thinking about Action class is as the Adapter design pattern. The purpose of the Action is to Convert the interface of a class into another interface the clients expect. Adapter lets classes work together that couldn_t otherwise because
34、 of incompatibility interface (from Design Patterns - Elements of Reusable OO Software by Gof). The client in this instance is the ActionServlet that knows nothing about our specific business class interface. Therefore, Struts provides a business interface it does understand, Action. By extending th
35、e Action, we make our business interface compatible with Struts business interface. (An interesting observation is that Action is a class and not an interface. Action started as an interface and changed into a class over time. Nothings perfect.) The Error classes The UML diagram (Figure 6) also incl
36、uded ActionError and ActionErrors. ActionError encapsulates an individual error message. ActionErrors is a container of ActionError classes that the View can access using tags. ActionErrors is Struts way of keeping up with a list of errors.The ActionMapping class An incoming event is normally in the
37、 form of an HTTP request, which the servlet Container turns into an HttpServletRequest. The Controller looks at the incoming event and dispatches the request to an Action class. The struts-config.xml determines what Action class the Controller calls. The struts-config.xml configuration information i
38、s translated into a set of ActionMapping, which are put into container of ActionMappings. (If you have not noticed it, classes that end with s are containers)The ActionMapping contains the knowledge of how a specific event maps to specific Actions. The ActionServlet (Command) passes the ActionMappin
39、g to the Action class via the perform() method. This allows Action to access the information to control flow.ActionMappings ActionMappings is a collection of ActionMapping objects.Struts pros Use of JSP tag mechanism The tag feature promotes reusable code and abstracts Java code from the JSP file. T
40、his feature allows nice integration into JSP-based development tools that allow authoring with tags. Tag library Why re-invent the wheel, or a tag library? If you cannot find something you need in the library, contribute. In addition, Struts provides a starting point if you are learning JSP tag tech
41、nology. Open source You have all the advantages of open source, such as being able to see the code and having everyone else using the library reviewing the code. Many eyes make for great code review. Sample MVC implementation Struts offers some insight if you want to create your own MVC implementati
42、on. Manage the problem space Divide and conquer is a nice way of solving the problem and making the problem manageable. Of course, the sword cuts both ways. The problem is more complex and needs more management. Struts cons Youth Struts development is still in preliminary form. They are working towa
43、rd releasing a version 1.0, but as with any 1.0 version, it does not provide all the bells and whistles. Change The framework is undergoing a rapid amount of change. A great deal of change has occurred between Struts 0.5 and 1.0. You may want to download the most current Struts nightly distributions
44、, to avoid deprecated methods. In the last 6 months, I have seen the Struts library grow from 90K to over 270K. I had to modify my examples several times because of changes in Struts, and I am not going to guarantee my examples will work with the version of Struts you download. Correct level of abst
45、raction Does Struts provide the correct level of abstraction? What is the proper level of abstraction for the page designer? That is the $64K question. Should we allow a page designer access to Java code in page development? Some frameworks like Velocity say no, and provide yet another language to l
46、earn for Web development. There is some validity to limiting Java code access in UI development. Most importantly, give a page designer a little bit of Java, and he will use a lot of Java. I saw this happen all the time in Microsoft ASP development. In ASP development, you were supposed to create CO
47、M objects and then write a little ASP script to glue it all together. Instead, the ASP developers would go crazy with ASP script. I would hear Why wait for a COM developer to create it when I can program it directly with VBScript? Struts helps limit the amount of Java code required in a JSP file via tag libraries. One such library is the Logic Tag, which manages conditional generation of output, but this does not prevent the UI developer from going nuts with Java code. Whatever type of framework you decide to use, you should understand the environment in which you are deploying
限制150内