@@ -597,7 +597,7 @@ work.
597
597
598
598
599
599
[[mvc-view-jsp-tags]]
600
- === Spring tags
600
+ === Spring's JSP tag library
601
601
602
602
Spring provides data binding of request parameters to command objects as described in
603
603
earlier chapters. To facilitate the development of JSP pages in combination with those
@@ -611,7 +611,7 @@ or see the tag library description.
611
611
612
612
613
613
[[mvc-view-jsp-formtaglib]]
614
- === Spring form tags
614
+ === Spring's form tag library
615
615
616
616
As of version 2.0, Spring provides a comprehensive set of data binding-aware tags for
617
617
handling form elements when using JSP and Spring Web MVC. Each tag provides support for
@@ -1298,7 +1298,7 @@ or see the tag library description.
1298
1298
1299
1299
1300
1300
[[mvc-rest-method-conversion]]
1301
- ==== HTTP Method Conversion
1301
+ ==== HTTP method conversion
1302
1302
1303
1303
A key principle of REST is the use of the Uniform Interface. This means that all
1304
1304
resources (URLs) can be manipulated using the same four HTTP methods: GET, PUT, POST,
@@ -1359,7 +1359,7 @@ The corresponding `@Controller` method is shown below:
1359
1359
1360
1360
1361
1361
[[mvc-view-jsp-formtaglib-html5]]
1362
- ==== HTML5 Tags
1362
+ ==== HTML5 tags
1363
1363
1364
1364
Starting with Spring 3, the Spring form tag library allows entering dynamic attributes,
1365
1365
which means you can enter any HTML5 specific attributes.
@@ -1668,7 +1668,7 @@ them otherwise in the file names for Tiles definitions.
1668
1668
1669
1669
1670
1670
[[mvc-view-tiles-url]]
1671
- ==== View Resolver
1671
+ ==== UrlBasedViewResolver
1672
1672
1673
1673
The `UrlBasedViewResolver` instantiates the given `viewClass` for each view it has to
1674
1674
resolve.
@@ -1683,10 +1683,10 @@ resolve.
1683
1683
1684
1684
1685
1685
[[mvc-view-tiles-resource]]
1686
- ==== Resource Bundle
1686
+ ==== ResourceBundleViewResolver
1687
1687
1688
1688
The `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:
1690
1690
1691
1691
[source,xml,indent=0]
1692
1692
[subs="verbatim,quotes"]
@@ -1719,7 +1719,7 @@ box.
1719
1719
1720
1720
1721
1721
[[mvc-view-tiles-preparer]]
1722
- ==== Preparer Factories
1722
+ ==== SimpleSpringPreparerFactory and SpringBeanPreparerFactory
1723
1723
1724
1724
As an advanced feature, Spring also supports two special Tiles `PreparerFactory`
1725
1725
implementations. Check out the Tiles documentation for details on how to use
@@ -1917,7 +1917,7 @@ This is rendered as:
1917
1917
1918
1918
1919
1919
[[mvc-view-document]]
1920
- == PDF, Excel
1920
+ == Document views: PDF, Excel
1921
1921
1922
1922
1923
1923
@@ -1944,6 +1944,7 @@ used in the XSLT example is invoked to render the same model as both a PDF docum
1944
1944
an Excel spreadsheet (which can also be viewed or manipulated in Open Office).
1945
1945
1946
1946
1947
+
1947
1948
[[mvc-view-document-configviews]]
1948
1949
=== View definition
1949
1950
@@ -2099,7 +2100,7 @@ document should appear listing each of the words in the model map.
2099
2100
2100
2101
2101
2102
[[mvc-view-feeds]]
2102
- == RSS Feeds
2103
+ == Feed views: RSS, Atom
2103
2104
2104
2105
Both `AbstractAtomFeedView` and `AbstractRssFeedView` inherit from the base class
2105
2106
`AbstractFeedView` and are used to provide Atom and RSS Feed views respectfully. They
0 commit comments