public class TilesViewResolver extends UrlBasedViewResolver
UrlBasedViewResolver
that supports
TilesView
(i.e. Tiles definitions) and custom subclasses of it.AbstractCachingViewResolver.CacheFilter
FORWARD_URL_PREFIX, REDIRECT_URL_PREFIX
DEFAULT_CACHE_LIMIT
logger
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor and Description |
---|
TilesViewResolver() |
Modifier and Type | Method and Description |
---|---|
protected TilesView |
buildView(String viewName)
Creates a new View instance of the specified view class and configures it.
|
protected Class<?> |
requiredViewClass()
This resolver requires
TilesView . |
void |
setAlwaysInclude(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, setViewNames
clearCache, getCacheFilter, getCacheLimit, isCache, isCacheUnresolved, removeFromCache, resolveViewName, setCache, setCacheFilter, setCacheLimit, setCacheUnresolved
getServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContext
getApplicationContext, getMessageSourceAccessor, obtainApplicationContext, requiredContextClass, setApplicationContext
protected Class<?> requiredViewClass()
TilesView
.requiredViewClass
in class UrlBasedViewResolver
AbstractUrlBasedView
public void setRenderer(Renderer renderer)
Renderer
to use. If not specified, a default
DefinitionRenderer
will be used.TilesView.setRenderer(Renderer)
public void setAlwaysInclude(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(String viewName) throws Exception
UrlBasedViewResolver
Spring 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 UrlBasedViewResolver
viewName
- the name of the view to buildException
- if the view couldn't be resolvedUrlBasedViewResolver.loadView(String, java.util.Locale)