Polishing in view rendering documentation

See gh-33195
This commit is contained in:
rstoyanchev
2024-08-07 12:07:48 +03:00
parent 062c18a81d
commit 0bac8d48a5
2 changed files with 14 additions and 6 deletions

View File

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

View File

@@ -1,12 +1,13 @@
[[mvc-view]]
= View Technologies
= View Rendering
:page-section-summary-toc: 1
[.small]#xref:web/webflux-view.adoc[See equivalent in the Reactive stack]#
The use of view technologies in Spring MVC is pluggable. Whether you decide to use
The rendering of views in Spring MVC is pluggable. Whether you decide to use
Thymeleaf, Groovy Markup Templates, JSPs, or other technologies is primarily a matter of
a configuration change. This chapter covers view technologies integrated with Spring MVC.
We assume you are already familiar with xref:web/webmvc/mvc-servlet/viewresolver.adoc[View Resolution].
For more context on view rendering, please see xref:web/webmvc/mvc-servlet/viewresolver.adoc[View Resolution].
WARNING: The views of a Spring MVC application live within the internal trust boundaries
of that application. Views have access to all the beans of your application context. As