You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
798 B
15 lines
798 B
8 years ago
|
[[mvc-view]]
|
||
|
= View Technologies
|
||
2 years ago
|
[.small]#<<web-reactive.adoc#webflux-view, See equivalent in the Reactive stack>>#
|
||
7 years ago
|
|
||
5 years ago
|
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.
|
||
|
We assume you are already familiar with <<mvc-viewresolver>>.
|
||
10 years ago
|
|
||
5 years ago
|
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.
|
||
6 years ago
|
|