Skip to content

Commit ba522e5

Browse files
committed
Package javadoc cleanup for web.servlet.mvc, removing outdated references
Issue: SPR-11935
1 parent 5ed20d2 commit ba522e5

File tree

2 files changed

+3
-45
lines changed

2 files changed

+3
-45
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@
1212
* naming convention. Classes are analyzed at startup and methods cached,
1313
* so the performance overhead of reflection in this approach is negligible.
1414
*
15-
* <p>This approach is analogous to the Struts 1.1 <b>DispatcherAction</b>
16-
* class, but more sophisticated, as it supports configurable mapping from
17-
* requests to URLs and allows for delegation as well as subclassing.
18-
*
19-
* <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>
20-
* by Rod Johnson, and used in the sample application.
21-
*
2215
*/
2316
package org.springframework.web.servlet.mvc.multiaction;
2417

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

Lines changed: 3 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,8 @@
1+
12
/**
23
*
3-
* <p>
4-
* Standard controller implementations for the servlet MVC framework that comes
5-
* with Spring. Provides both abstract base classes and concrete implementations
6-
* for often seen use cases.
7-
* </p>
8-
*
9-
* <p>
10-
* A {@code Controller} - as defined in this package - is analogous to a Struts
11-
* {@code Action}. Usually {@code Controllers} are JavaBeans
12-
* to allow easy configuration. Controllers define the {@code C} from so-called
13-
* MVC paradigm and can be used in conjunction with the
14-
* {@link org.springframework.web.servlet.ModelAndView ModelAndView}
15-
* to achieve interactive applications. The view might be represented by a
16-
* HTML interface, but, because of model and the controller being completely
17-
* independent of the view, PDF views are possible, as well as for instance Excel
18-
* views.
19-
* </p>
20-
*
21-
* <p>
22-
* How to actually set up a (web)application using the MVC framework Spring
23-
* provides is explained in more detail in the
24-
* <a href="../../../../../../MVC-step-by-step/Spring-MVC-step-by-step.html">MVC-Step-by-Step
25-
* tutorial</a>, also provided in this package (or have a look
26-
* <a href="http://www.springframework.org">here</a> for an online version).
27-
* The classes contained by this package explain in more detail the actual
28-
* workflow of some of the abstract and concrete controller and how to extend
29-
* and fully use their functionality.
30-
* </p>
31-
*
32-
* <p>
33-
* Especially useful to read, while getting into the Spring MVC framework
34-
* are the following:
35-
* <ul>
36-
* <li><a href="Controller.html">Controller</a></li>
37-
* <li><a href="SimpleFormController.html">BaseCommandController</a></li>
38-
* <li><a href="ParameterizableViewController.html">ParameterizableViewController</a></li>
39-
* </ul>
40-
* </p>
4+
* Standard controller implementations for the Servlet MVC framework that comes with
5+
* Spring. Provides various controller styles, including an annotation-based model.
416
*
427
*/
438
package org.springframework.web.servlet.mvc;

0 commit comments

Comments
 (0)