|
| 1 | + |
1 | 2 | /** |
2 | 3 | * |
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. |
41 | 6 | * |
42 | 7 | */ |
43 | 8 | package org.springframework.web.servlet.mvc; |
|
0 commit comments