Google News
logo
Java Spring MVC - Interview Questions
What do you understand by Spring MVC Tiles?
The Spring provides integration support with apache tiles framework. So we can manage the layout of the Spring MVC application with the help of spring tiles support. The following are the advantages of Tiles support in Spring MVC :
 
* Reusability : We can reuse a single component in multiple pages like header and footer components.

* Centralized control : We can control the layout of the page by a single template page only.

* Easy to change the layout : By the help of a single template page, we can change the layout of the page anytime. So your website can easily adopt new technologies such as bootstrap and jQuery.
Advertisement