@@ -597,7 +597,7 @@ work.
597597
598598
599599[[mvc-view-jsp-tags]]
600- === Spring tags
600+ === Spring's JSP tag library
601601
602602Spring provides data binding of request parameters to command objects as described in
603603earlier chapters. To facilitate the development of JSP pages in combination with those
@@ -611,7 +611,7 @@ or see the tag library description.
611611
612612
613613[[mvc-view-jsp-formtaglib]]
614- === Spring form tags
614+ === Spring's form tag library
615615
616616As of version 2.0, Spring provides a comprehensive set of data binding-aware tags for
617617handling form elements when using JSP and Spring Web MVC. Each tag provides support for
@@ -1298,7 +1298,7 @@ or see the tag library description.
12981298
12991299
13001300[[mvc-rest-method-conversion]]
1301- ==== HTTP Method Conversion
1301+ ==== HTTP method conversion
13021302
13031303A key principle of REST is the use of the Uniform Interface. This means that all
13041304resources (URLs) can be manipulated using the same four HTTP methods: GET, PUT, POST,
@@ -1359,7 +1359,7 @@ The corresponding `@Controller` method is shown below:
13591359
13601360
13611361[[mvc-view-jsp-formtaglib-html5]]
1362- ==== HTML5 Tags
1362+ ==== HTML5 tags
13631363
13641364Starting with Spring 3, the Spring form tag library allows entering dynamic attributes,
13651365which means you can enter any HTML5 specific attributes.
@@ -1668,7 +1668,7 @@ them otherwise in the file names for Tiles definitions.
16681668
16691669
16701670[[mvc-view-tiles-url]]
1671- ==== View Resolver
1671+ ==== UrlBasedViewResolver
16721672
16731673The `UrlBasedViewResolver` instantiates the given `viewClass` for each view it has to
16741674resolve.
@@ -1683,10 +1683,10 @@ resolve.
16831683
16841684
16851685[[mvc-view-tiles-resource]]
1686- ==== Resource Bundle
1686+ ==== ResourceBundleViewResolver
16871687
16881688The `ResourceBundleViewResolver` has to be provided with a property file containing
1689- viewnames and viewclasses the resolver can use:
1689+ view names and view classes the resolver can use:
16901690
16911691[source,xml,indent=0]
16921692[subs="verbatim,quotes"]
@@ -1719,7 +1719,7 @@ box.
17191719
17201720
17211721[[mvc-view-tiles-preparer]]
1722- ==== Preparer Factories
1722+ ==== SimpleSpringPreparerFactory and SpringBeanPreparerFactory
17231723
17241724As an advanced feature, Spring also supports two special Tiles `PreparerFactory`
17251725implementations. Check out the Tiles documentation for details on how to use
@@ -1917,7 +1917,7 @@ This is rendered as:
19171917
19181918
19191919[[mvc-view-document]]
1920- == PDF, Excel
1920+ == Document views: PDF, Excel
19211921
19221922
19231923
@@ -1944,6 +1944,7 @@ used in the XSLT example is invoked to render the same model as both a PDF docum
19441944an Excel spreadsheet (which can also be viewed or manipulated in Open Office).
19451945
19461946
1947+
19471948[[mvc-view-document-configviews]]
19481949=== View definition
19491950
@@ -2099,7 +2100,7 @@ document should appear listing each of the words in the model map.
20992100
21002101
21012102[[mvc-view-feeds]]
2102- == RSS Feeds
2103+ == Feed views: RSS, Atom
21032104
21042105Both `AbstractAtomFeedView` and `AbstractRssFeedView` inherit from the base class
21052106`AbstractFeedView` and are used to provide Atom and RSS Feed views respectfully. They
0 commit comments