Skip to content

Commit

Permalink
Polishing in view rendering documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoyanchev committed Aug 8, 2024
1 parent 062c18a commit 0bac8d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
13 changes: 10 additions & 3 deletions framework-docs/modules/ROOT/pages/web/webflux-view.adoc
Original file line number Diff line number Diff line change
@@ -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.



Expand Down
7 changes: 4 additions & 3 deletions framework-docs/modules/ROOT/pages/web/webmvc-view.adoc
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 0bac8d4

Please sign in to comment.