1、此文档是毕业设计外文翻译成品( 含英文原文 +中文翻译),无需调整复杂的格式!下载之后直接可用,方便快捷!本文价格不贵 ,也就几十块钱! 外文标题: Integrating Spring MVC Framework 外文作者: Aleksa Vukotic, James Goodwill 文献出处 :Apache Tomcat 7: 199-209 英文 3426单词, 18995字符,中文 5689汉字。 Integrating Spring MVC Framework Aleksa Vukotic, James Goodwill Java Servlet
2、 API provides a rich and customizable framework for the development of web applications. However, in the professional Java development world, that is often not enough. While Java Servlet API provides low-level interfaces and classes for interaction with web requests, efficient programming ofte
3、n requires an abstraction layer on top of the core servlet components. We are going to take a look at one such framework in this chapter: Spring MVC. In this chapter we are going to: Describe the Model-View-Controller pattern, which is the core part of Spring MVC Discuss the Front Contro
4、ller pattern that Spring MVC also implements Introduce the Spring framework, of which Spring MVC is part Implement and configure a sample Spring MVC application, by adding model, view, and controller components Introducing Spring MVC Spring MVC is a Java framework for the development of Java web app
5、lications using servlets. It uses the MVC design pattern to organize the structure of web applications. It also implements the Front Controller design pattern to create configurable and easy-to-implement web components. Spring MVC is a part of the Spring frameworka popular, multi-purpose, open sourc
6、e Java framework. In this section, we will discuss each of the design patterns implemented by the Spring MVC framework, and introduce the core principles of Spring framework, to which Spring MVC belongs. Spring Framework Overview Spring framework is a lightweight, open source Java application framework designed to enable application developers to concentrate on the functional problems at hand by providing the infrastructure, or glue-code, for Java enterprise applications. Spring is the brainchild of Rod Johnson, who first i