Browse Source

Package javadoc cleanup for web.servlet.mvc, removing outdated references

Issue: SPR-11935
pull/576/merge
Juergen Hoeller 11 years ago
parent
commit
ba522e5e55
  1. 7
      spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/multiaction/package-info.java
  2. 41
      spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/package-info.java

7
spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/multiaction/package-info.java

@ -12,13 +12,6 @@ @@ -12,13 +12,6 @@
* naming convention. Classes are analyzed at startup and methods cached,
* so the performance overhead of reflection in this approach is negligible.
*
* <p>This approach is analogous to the Struts 1.1 <b>DispatcherAction</b>
* class, but more sophisticated, as it supports configurable mapping from
* requests to URLs and allows for delegation as well as subclassing.
*
* <p>This package is discussed in Chapter 12 of <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
* by Rod Johnson, and used in the sample application.
*
*/
package org.springframework.web.servlet.mvc.multiaction;

41
spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/package-info.java

@ -1,43 +1,8 @@ @@ -1,43 +1,8 @@
/**
*
* <p>
* Standard controller implementations for the servlet MVC framework that comes
* with Spring. Provides both abstract base classes and concrete implementations
* for often seen use cases.
* </p>
*
* <p>
* A {@code Controller} - as defined in this package - is analogous to a Struts
* {@code Action}. Usually {@code Controllers} are JavaBeans
* to allow easy configuration. Controllers define the {@code C} from so-called
* MVC paradigm and can be used in conjunction with the
* {@link org.springframework.web.servlet.ModelAndView ModelAndView}
* to achieve interactive applications. The view might be represented by a
* HTML interface, but, because of model and the controller being completely
* independent of the view, PDF views are possible, as well as for instance Excel
* views.
* </p>
*
* <p>
* How to actually set up a (web)application using the MVC framework Spring
* provides is explained in more detail in the
* <a href="../../../../../../MVC-step-by-step/Spring-MVC-step-by-step.html">MVC-Step-by-Step
* tutorial</a>, also provided in this package (or have a look
* <a href="http://www.springframework.org">here</a> for an online version).
* The classes contained by this package explain in more detail the actual
* workflow of some of the abstract and concrete controller and how to extend
* and fully use their functionality.
* </p>
*
* <p>
* Especially useful to read, while getting into the Spring MVC framework
* are the following:
* <ul>
* <li><a href="Controller.html">Controller</a></li>
* <li><a href="SimpleFormController.html">BaseCommandController</a></li>
* <li><a href="ParameterizableViewController.html">ParameterizableViewController</a></li>
* </ul>
* </p>
* Standard controller implementations for the Servlet MVC framework that comes with
* Spring. Provides various controller styles, including an annotation-based model.
*
*/
package org.springframework.web.servlet.mvc;

Loading…
Cancel
Save