类 AbstractCachingViewResolver
- 所有已实现的接口:
cn.taketoday.beans.factory.Aware,cn.taketoday.context.ApplicationContextAware,ViewResolver
- 直接已知子类:
UrlBasedViewResolver
ViewResolver
implementations. Caches View objects
once resolved: This means that view resolution won't be a performance problem,
no matter how costly initial view retrieval is.
Subclasses need to implement the loadView(java.lang.String, java.util.Locale) template method,
building the View object for a specific view name and locale.
- 作者:
- Harry Yang, Rod Johnson, Juergen Hoeller
- 另请参阅:
-
嵌套类概要
嵌套类修饰符和类型类说明static interfaceFilter that determines if view should be cached. -
字段概要
字段修饰符和类型字段说明Filter function that determines if view should be cached.private intThe maximum number of entries in the cache.private booleanWhether we should refrain from resolving views again if unresolved once.static final AbstractCachingViewResolver.CacheFilterDefault cache filter that always caches.static final intDefault maximum number of entries for the view cache: 1024.static final ViewDummy marker object for unresolved views in the cache Maps.private final ConcurrentHashMap<Object,View> Fast access cache for Views, returning already cached instances without a global lock.private final LinkedHashMap<Object,View> Map from view key to View instance, synchronized for View creation.从类继承的字段 cn.taketoday.context.support.ApplicationObjectSupport
applicationContext, log, messageSourceAccessor -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明voidClear the entire view cache, removing all cached view objects.protected ViewcreateView(String viewName, Locale locale) Create the actual View object.private static StringReturn filter function that determines if view should be cached.protected ObjectgetCacheKey(String viewName, Locale locale) Return the cache key for the given view name and the given locale.intReturn the maximum number of entries for the view cache.booleanisCache()Return if caching is enabled.booleanReturn if caching of unresolved views is enabled.protected abstract ViewSubclasses must implement this method, building a View object for the specified view.voidremoveFromCache(String viewName, Locale locale) Provides functionality to clear the cache for a certain view.resolveViewName(String viewName, Locale locale) Resolve the given view by name.voidsetCache(boolean cache) Enable or disable caching.voidsetCacheFilter(AbstractCachingViewResolver.CacheFilter cacheFilter) Sets the filter that determines if view should be cached.voidsetCacheLimit(int cacheLimit) Specify the maximum number of entries for the view cache.voidsetCacheUnresolved(boolean cacheUnresolved) Whether a view name once resolved tonullshould be cached and automatically resolved tonullsubsequently.从类继承的方法 cn.taketoday.context.support.ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, initApplicationContext, isContextRequired, obtainApplicationContext, requiredContextClass, setApplicationContext, unwrapContext, unwrapFactory
-
字段详细资料
-
DEFAULT_CACHE_LIMIT
public static final int DEFAULT_CACHE_LIMITDefault maximum number of entries for the view cache: 1024.- 另请参阅:
-
UNRESOLVED_VIEW
Dummy marker object for unresolved views in the cache Maps. -
DEFAULT_CACHE_FILTER
Default cache filter that always caches. -
cacheLimit
private volatile int cacheLimitThe maximum number of entries in the cache. -
cacheUnresolved
private boolean cacheUnresolvedWhether we should refrain from resolving views again if unresolved once. -
cacheFilter
Filter function that determines if view should be cached. -
viewAccessCache
Fast access cache for Views, returning already cached instances without a global lock. -
viewCreationCache
Map from view key to View instance, synchronized for View creation.
-
-
构造器详细资料
-
AbstractCachingViewResolver
public AbstractCachingViewResolver()
-
-
方法详细资料
-
setCacheLimit
public void setCacheLimit(int cacheLimit) Specify the maximum number of entries for the view cache. Default is 1024. -
getCacheLimit
public int getCacheLimit()Return the maximum number of entries for the view cache. -
setCache
public void setCache(boolean cache) Enable or disable caching.This is equivalent to setting the
"cacheLimit"property to the default limit (1024) or to 0, respectively.Default is "true": caching is enabled. Disable this only for debugging and development.
-
isCache
public boolean isCache()Return if caching is enabled. -
setCacheUnresolved
public void setCacheUnresolved(boolean cacheUnresolved) Whether a view name once resolved tonullshould be cached and automatically resolved tonullsubsequently.Default is "true": unresolved view names are being cached, as of Framework 3.1. Note that this flag only applies if the general
"cache"flag is kept at its default of "true" as well.Of specific interest is the ability for some AbstractUrlBasedView implementations (FreeMarker, Tiles) to check if an underlying resource exists via
AbstractUrlBasedView.checkResource(Locale). With this flag set to "false", an underlying resource that re-appears is noticed and used. With the flag set to "true", one check is made only. -
isCacheUnresolved
public boolean isCacheUnresolved()Return if caching of unresolved views is enabled. -
setCacheFilter
Sets the filter that determines if view should be cached. Default behaviour is to cache all views. -
getCacheFilter
Return filter function that determines if view should be cached. -
resolveViewName
从接口复制的说明:ViewResolverResolve the given view by name.Note: To allow for ViewResolver chaining, a ViewResolver should return
nullif a view with the given name is not defined in it. However, this is not required: Some ViewResolvers will always attempt to build View objects with the given name, unable to returnnull(rather throwing an exception when View creation failed).- 指定者:
resolveViewName在接口中ViewResolver- 参数:
viewName- name of the view to resolvelocale- the Locale in which to resolve the view. ViewResolvers that support internationalization should respect this.- 返回:
- the View object, or
nullif not found (optional, to allow for ViewResolver chaining) - 抛出:
Exception- if the view cannot be resolved (typically in case of problems creating an actual View object)
-
formatKey
-
getCacheKey
Return the cache key for the given view name and the given locale.Default is a String consisting of view name and locale suffix. Can be overridden in subclasses.
Needs to respect the locale in general, as a different locale can lead to a different view resource.
-
removeFromCache
Provides functionality to clear the cache for a certain view.This can be handy in case developer are able to modify views (e.g. FreeMarker templates) at runtime after which you'd need to clear the cache for the specified view.
- 参数:
viewName- the view name for which the cached view object (if any) needs to be removedlocale- the locale for which the view object should be removed
-
clearCache
public void clearCache()Clear the entire view cache, removing all cached view objects. Subsequent resolve calls will lead to recreation of demanded view objects. -
createView
Create the actual View object.The default implementation delegates to
loadView(java.lang.String, java.util.Locale). This can be overridden to resolve certain view names in a special fashion, before delegating to the actualloadViewimplementation provided by the subclass.- 参数:
viewName- the name of the view to retrievelocale- the Locale to retrieve the view for- 返回:
- the View instance, or
nullif not found (optional, to allow for ViewResolver chaining) - 抛出:
Exception- if the view couldn't be resolved- 另请参阅:
-
loadView
Subclasses must implement this method, building a View object for the specified view. The returned View objects will be cached by this ViewResolver base class.Subclasses are not forced to support internationalization: A subclass that does not may simply ignore the locale parameter.
- 参数:
viewName- the name of the view to retrievelocale- the Locale to retrieve the view for- 返回:
- the View instance, or
nullif not found (optional, to allow for ViewResolver chaining) - 抛出:
Exception- if the view couldn't be resolved- 另请参阅:
-