Spring MVC – View Resolver | Code Factory


Donate : Link

Medium Blog : Link

Applications : Link

This image has an empty alt attribute; its file name is image-1.png

Spring Tutorial Index Page: Link

  • All MVC frameworks provide a way of working with views.
  • Spring does that via the view resolvers, which enable you to render models in the browser without tying the implementation to a specific view technology.
  • The ViewResolver maps view names to actual views.
  • And the Spring framework comes with quite a few view resolvers e.g. InternalResourceViewResolver, XmlViewResolver, ResourceBundleViewResolver and a few others.

  1. Spring MVC – Internal Resource View Resolver
  2. Spring MVC – Xml View Resolver
  3. Spring MVC – Resource Bundle View Resolver
  4. Spring MVC – Tiles View Resolver

Leave a comment