diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/multiaction/package-info.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/multiaction/package-info.java index 320384a29f..0659e76f91 100644 --- a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/multiaction/package-info.java +++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/multiaction/package-info.java @@ -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. * - *
This approach is analogous to the Struts 1.1 DispatcherAction - * class, but more sophisticated, as it supports configurable mapping from - * requests to URLs and allows for delegation as well as subclassing. - * - *
This package is discussed in Chapter 12 of Expert One-On-One J2EE Design and Development - * by Rod Johnson, and used in the sample application. - * */ package org.springframework.web.servlet.mvc.multiaction; diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/package-info.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/package-info.java index 55998febda..c3380ae12a 100644 --- a/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/package-info.java +++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/package-info.java @@ -1,43 +1,8 @@ + /** * - *
- * 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. - *
- * - *- * 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. - *
- * - *- * How to actually set up a (web)application using the MVC framework Spring - * provides is explained in more detail in the - * MVC-Step-by-Step - * tutorial, also provided in this package (or have a look - * here 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. - *
- * - *- * Especially useful to read, while getting into the Spring MVC framework - * are the following: - *