2017-08-23 22:00:26 +08:00
|
|
|
[[mvc-view]]
|
|
|
|
= View Technologies
|
2023-04-19 23:26:17 +08:00
|
|
|
:page-section-summary-toc: 1
|
2023-04-19 23:26:17 +08:00
|
|
|
[.small]#xref:web/webflux-view.adoc[See equivalent in the Reactive stack]#
|
2017-10-19 02:24:17 +08:00
|
|
|
|
2020-06-17 19:35:14 +08:00
|
|
|
The use of view technologies 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.
|
2023-04-19 23:26:17 +08:00
|
|
|
We assume you are already familiar with xref:web/webmvc/mvc-servlet/viewresolver.adoc[View Resolution].
|
2015-03-03 18:38:01 +08:00
|
|
|
|
2020-06-17 19:35:14 +08:00
|
|
|
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
|
|
|
|
such, it is not recommended to use Spring MVC's template support in applications where
|
|
|
|
the templates are editable by external sources, since this can have security implications.
|
2018-10-25 21:15:58 +08:00
|
|
|
|