Skip to content

Commit 0bac8d4

Browse files
committed
Polishing in view rendering documentation
See gh-33195
1 parent 062c18a commit 0bac8d4

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

framework-docs/modules/ROOT/pages/web/webflux-view.adoc

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
[[webflux-view]]
2-
= View Technologies
2+
= View Rendering
33
[.small]#xref:web/webmvc-view.adoc[See equivalent in the Servlet stack]#
44

5-
The use of view technologies in Spring WebFlux is pluggable. Whether you decide to
5+
The rendering of views in Spring WebFlux is pluggable. Whether you decide to
66
use Thymeleaf, FreeMarker, or some other view technology is primarily a matter of a
77
configuration change. This chapter covers the view technologies integrated with Spring
8-
WebFlux. We assume you are already familiar with xref:web/webflux/dispatcher-handler.adoc#webflux-viewresolution[View Resolution].
8+
WebFlux.
9+
10+
For more context on view rendering, please see xref:web/webflux/dispatcher-handler.adoc#webflux-viewresolution[View Resolution].
11+
12+
WARNING: The views of a Spring WebFlux application live within internal trust boundaries
13+
of the application. Views have access to beans in the application context, and as
14+
such, we do not recommend use the Spring WebFlux template support in applications where
15+
the templates are editable by external sources, since this can have security implications.
916

1017

1118

framework-docs/modules/ROOT/pages/web/webmvc-view.adoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[[mvc-view]]
2-
= View Technologies
2+
= View Rendering
33
:page-section-summary-toc: 1
44
[.small]#xref:web/webflux-view.adoc[See equivalent in the Reactive stack]#
55

6-
The use of view technologies in Spring MVC is pluggable. Whether you decide to use
6+
The rendering of views in Spring MVC is pluggable. Whether you decide to use
77
Thymeleaf, Groovy Markup Templates, JSPs, or other technologies is primarily a matter of
88
a configuration change. This chapter covers view technologies integrated with Spring MVC.
9-
We assume you are already familiar with xref:web/webmvc/mvc-servlet/viewresolver.adoc[View Resolution].
9+
10+
For more context on view rendering, please see xref:web/webmvc/mvc-servlet/viewresolver.adoc[View Resolution].
1011

1112
WARNING: The views of a Spring MVC application live within the internal trust boundaries
1213
of that application. Views have access to all the beans of your application context. As

0 commit comments

Comments
 (0)