类 VelocityViewResolver

java.lang.Object
org.springframework.context.support.ApplicationObjectSupport
org.springframework.web.context.support.WebApplicationObjectSupport
org.springframework.web.servlet.view.AbstractCachingViewResolver
org.springframework.web.servlet.view.UrlBasedViewResolver
org.springframework.web.servlet.view.AbstractTemplateViewResolver
cn.aradin.spring.velocity.view.VelocityViewResolver
所有已实现的接口:
org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware, org.springframework.core.Ordered, org.springframework.web.context.ServletContextAware, org.springframework.web.servlet.ViewResolver
直接已知子类:
EmbeddedVelocityViewResolver, VelocityLayoutViewResolver

public class VelocityViewResolver extends org.springframework.web.servlet.view.AbstractTemplateViewResolver
Convenience subclass of UrlBasedViewResolver that supports VelocityView (i.e. Velocity templates) and custom subclasses of it.

The view class for all views generated by this resolver can be specified via the "viewClass" property. See UrlBasedViewResolver's javadoc for details.

Note: When chaining ViewResolvers, a VelocityViewResolver will check for the existence of the specified template resources and only return a non-null View object if the template was actually found.

从以下版本开始:
13.12.2003
作者:
Juergen Hoeller
另请参阅:
  • 嵌套类概要

    从类继承的嵌套类/接口 org.springframework.web.servlet.view.AbstractCachingViewResolver

    org.springframework.web.servlet.view.AbstractCachingViewResolver.CacheFilter
  • 字段概要

    从类继承的字段 org.springframework.web.servlet.view.UrlBasedViewResolver

    FORWARD_URL_PREFIX, REDIRECT_URL_PREFIX

    从类继承的字段 org.springframework.web.servlet.view.AbstractCachingViewResolver

    DEFAULT_CACHE_LIMIT

    从类继承的字段 org.springframework.context.support.ApplicationObjectSupport

    logger

    从接口继承的字段 org.springframework.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • 构造器概要

    构造器
    构造器
    说明
     
  • 方法概要

    修饰符和类型
    方法
    说明
    protected org.springframework.web.servlet.view.AbstractUrlBasedView
    buildView(String viewName)
     
    protected void
     
    protected Class<?>
    Requires VelocityView.
    void
    setDateToolAttribute(String dateToolAttribute)
    Set the name of the DateTool helper object to expose in the Velocity context of this view, or null if not needed.
    void
    setNumberToolAttribute(String numberToolAttribute)
    Set the name of the NumberTool helper object to expose in the Velocity context of this view, or null if not needed.
    void
    setToolboxConfigLocation(String toolboxConfigLocation)
    Set a Velocity Toolbox config location, for example "/WEB-INF/toolbox.xml", to automatically load a Velocity Tools toolbox definition file and expose all defined tools in the specified scopes.

    从类继承的方法 org.springframework.web.servlet.view.AbstractTemplateViewResolver

    setAllowRequestOverride, setAllowSessionOverride, setExposeRequestAttributes, setExposeSessionAttributes, setExposeSpringMacroHelpers

    从类继承的方法 org.springframework.web.servlet.view.UrlBasedViewResolver

    applyLifecycleMethods, canHandle, createView, getAttributesMap, getCacheKey, getContentType, getExposeContextBeansAsAttributes, getExposedContextBeanNames, getExposePathVariables, getOrder, getPrefix, getRedirectHosts, getRequestContextAttribute, getSuffix, getViewClass, getViewNames, instantiateView, isRedirectContextRelative, isRedirectHttp10Compatible, loadView, setAttributes, setAttributesMap, setContentType, setExposeContextBeansAsAttributes, setExposedContextBeanNames, setExposePathVariables, setOrder, setPrefix, setRedirectContextRelative, setRedirectHosts, setRedirectHttp10Compatible, setRequestContextAttribute, setSuffix, setViewClass, setViewNames

    从类继承的方法 org.springframework.web.servlet.view.AbstractCachingViewResolver

    clearCache, getCacheFilter, getCacheLimit, isCache, isCacheUnresolved, removeFromCache, resolveViewName, setCache, setCacheFilter, setCacheLimit, setCacheUnresolved

    从类继承的方法 org.springframework.web.context.support.WebApplicationObjectSupport

    getServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContext

    从类继承的方法 org.springframework.context.support.ApplicationObjectSupport

    getApplicationContext, getMessageSourceAccessor, obtainApplicationContext, requiredContextClass, setApplicationContext

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 构造器详细资料

    • VelocityViewResolver

      public VelocityViewResolver()
  • 方法详细资料

    • requiredViewClass

      protected Class<?> requiredViewClass()
      Requires VelocityView.
      覆盖:
      requiredViewClass 在类中 org.springframework.web.servlet.view.AbstractTemplateViewResolver
    • setDateToolAttribute

      public void setDateToolAttribute(String dateToolAttribute)
      Set the name of the DateTool helper object to expose in the Velocity context of this view, or null if not needed. DateTool is part of Velocity Tools 1.0.
      参数:
      dateToolAttribute - dateToolAttribute
      另请参阅:
    • setNumberToolAttribute

      public void setNumberToolAttribute(String numberToolAttribute)
      Set the name of the NumberTool helper object to expose in the Velocity context of this view, or null if not needed. NumberTool is part of Velocity Tools 1.1.
      参数:
      numberToolAttribute - numberToolAttribute
      另请参阅:
    • setToolboxConfigLocation

      public void setToolboxConfigLocation(String toolboxConfigLocation)
      Set a Velocity Toolbox config location, for example "/WEB-INF/toolbox.xml", to automatically load a Velocity Tools toolbox definition file and expose all defined tools in the specified scopes. If no config location is specified, no toolbox will be loaded and exposed.

      The specified location string needs to refer to a ServletContext resource, as expected by ServletToolboxManager which is part of the view package of Velocity Tools.

      Note: Specifying a toolbox config location will lead to VelocityToolboxView instances being created.

      参数:
      toolboxConfigLocation - toolboxConfigLocation
      另请参阅:
    • initApplicationContext

      protected void initApplicationContext()
      覆盖:
      initApplicationContext 在类中 org.springframework.web.servlet.view.UrlBasedViewResolver
    • buildView

      protected org.springframework.web.servlet.view.AbstractUrlBasedView buildView(String viewName) throws Exception
      覆盖:
      buildView 在类中 org.springframework.web.servlet.view.AbstractTemplateViewResolver
      抛出:
      Exception