Implementation of ViewResolver that uses bean definitions in a
ResourceBundle, specified by the bundle basename. The bundle is
typically defined in a properties file, located in the class path.
The default bundle basename is "views".
This ViewResolver supports localized view definitions, using the
default support of java.util.PropertyResourceBundle.
For example, the basename "views" will be resolved as class path resources
"views_de_AT.properties", "views_de.properties", "views.properties" -
for a given Locale "de_AT".
Note: This ViewResolver implements the Ordered interface to allow for
flexible participation in ViewResolver chaining. For example, some special
views could be defined via this ViewResolver (giving it 0 as "order" value),
while all remaining views could be resolved by a UrlBasedViewResolver.
This ViewResolver supports localized view definitions, using the default support of
java.util.PropertyResourceBundle. For example, the basename "views" will be resolved as class path resources "views_de_AT.properties", "views_de.properties", "views.properties" - for a given Locale "de_AT".Note: This ViewResolver implements the Ordered interface to allow for flexible participation in ViewResolver chaining. For example, some special views could be defined via this ViewResolver (giving it 0 as "order" value), while all remaining views could be resolved by a UrlBasedViewResolver.