public class TilesViewResolver extends UrlBasedViewResolver
UrlBasedViewResolver that supports
TilesView (i.e. Tiles definitions) and custom subclasses of it.FORWARD_URL_PREFIX, REDIRECT_URL_PREFIXDEFAULT_CACHE_LIMITloggerHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE| Constructor and Description |
|---|
TilesViewResolver() |
| Modifier and Type | Method and Description |
|---|---|
protected TilesView |
buildView(java.lang.String viewName)
Creates a new View instance of the specified view class and configures it.
|
protected java.lang.Class<?> |
requiredViewClass()
This resolver requires
TilesView. |
void |
setAlwaysInclude(java.lang.Boolean alwaysInclude)
Specify whether to always include the view rather than forward to it.
|
void |
setRenderer(Renderer renderer)
Set the
Renderer to use. |
applyLifecycleMethods, canHandle, createView, getAttributesMap, getCacheKey, getContentType, getExposeContextBeansAsAttributes, getExposedContextBeanNames, getExposePathVariables, getOrder, getPrefix, getRedirectHosts, getRequestContextAttribute, getSuffix, getViewClass, getViewNames, initApplicationContext, isRedirectContextRelative, isRedirectHttp10Compatible, loadView, setAttributes, setAttributesMap, setContentType, setExposeContextBeansAsAttributes, setExposedContextBeanNames, setExposePathVariables, setOrder, setPrefix, setRedirectContextRelative, setRedirectHosts, setRedirectHttp10Compatible, setRequestContextAttribute, setSuffix, setViewClass, setViewNamesclearCache, getCacheLimit, isCache, isCacheUnresolved, removeFromCache, resolveViewName, setCache, setCacheLimit, setCacheUnresolvedgetServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContextgetApplicationContext, getMessageSourceAccessor, obtainApplicationContext, requiredContextClass, setApplicationContextprotected java.lang.Class<?> requiredViewClass()
TilesView.requiredViewClass in class UrlBasedViewResolverAbstractUrlBasedViewpublic void setRenderer(Renderer renderer)
Renderer to use. If not specified, a default
DefinitionRenderer will be used.TilesView.setRenderer(Renderer)public void setAlwaysInclude(java.lang.Boolean alwaysInclude)
Default is "false". Switch this flag on to enforce the use of a Servlet include, even if a forward would be possible.
TilesView.setAlwaysInclude(boolean)protected TilesView buildView(java.lang.String viewName) throws java.lang.Exception
UrlBasedViewResolverSpring lifecycle methods as defined by the bean container do not have to
be called here; those will be applied by the loadView method
after this method returns.
Subclasses will typically call super.buildView(viewName)
first, before setting further properties themselves. loadView
will then apply Spring lifecycle methods at the end of this process.
buildView in class UrlBasedViewResolverviewName - the name of the view to buildjava.lang.Exception - if the view couldn't be resolvedUrlBasedViewResolver.loadView(String, java.util.Locale)