GenericFilterBean-api

20 篇文章 0 订阅

 

/**
 * Simple base implementation of {@link javax.servlet.Filter} which treats
 * its config parameters (<code>init-param</code> entries within the
 * <code>filter</code> tag in <code>web.xml</code>) as bean properties.
 *翻译:

接口GenericFilterBean是javax.servlet.Filter接口的一个基本的实现类,特别的是,

接口GenericFilterBean将web.xml中filter标签中的配置参数-init-param项作为bean的属性。


 * <p>A handy superclass for any type of filter. Type conversion of config
 * parameters is automatic, with the corresponding setter method getting
 * invoked with the converted value. It is also possible for subclasses to
 * specify required properties. Parameters without matching bean property
 * setter will simply be ignored.
 *翻译:

接口GenericFilterBean可以简单地成为任何类型的filter的父类。配置参数的值的类型转换通过调用

相应的setter 方法来自动进行的。接口GenericFilterBean的子类可以自定义一些自己需要的属性。但是,

配置文件中没有对应bean属性setter方法的参数会被忽略。


 * <p>This filter leaves actual filtering to subclasses, which have to
 * implement the {@link javax.servlet.Filter#doFilter} method.

翻译:

这个filter,接口GenericFilterBean,将实际的过滤工作留给他的子类来完成,这

就导致了他的子类不得不实现doFilter方法。

 *
 * <p>This generic filter base class has no dependency on the Spring
 * {@link org.springframework.context.ApplicationContext} concept.
 * Filters usually don't load their own context but rather access service
 * beans from the Spring root application context, accessible via the
 * filter's {@link #getServletContext() ServletContext} (see
 * {@link org.springframework.web.context.support.WebApplicationContextUtils}).
 *翻译:

接口GenericFilterBean不依赖于Spring的ApplicationContext。Filters通常不会直接读取他们

的容器信息(ApplicationContext concept)而是通过访问spring容器(Spring root application context)

中的service beans来获取,通常是通过调用filter里面的getServletContext() 方法来获取。

 

 * @author Juergen Hoeller

@author 译者:kaiwii

 * @since 06.12.2003
 * @see #addRequiredProperty
 * @see #initFilterBean
 * @see #doFilter
 */
public abstract class GenericFilterBean implements
  Filter, BeanNameAware, ServletContextAware, InitializingBean, DisposableBean {

 /** Logger available to subclasses */
 protected final Log logger = LogFactory.getLog(getClass());

 /**
  * Set of required properties (Strings) that must be supplied as
  * config parameters to this filter.
  */
 private final Set requiredProperties = new HashSet();

 /* The FilterConfig of this filter */
 private FilterConfig filterConfig;


 private String beanName;

 private ServletContext servletContext;


 /**
  * Stores the bean name as defined in the Spring bean factory.
  * <p>Only relevant in case of initialization as bean, to have a name as
  * fallback to the filter name usually provided by a FilterConfig instance.
  * @see org.springframework.beans.factory.BeanNameAware
  * @see #getFilterName()
  */
 public final void setBeanName(String beanName) {
  this.beanName = beanName;
 }

 /**
  * Stores the ServletContext that the bean factory runs in.
  * <p>Only relevant in case of initialization as bean, to have a ServletContext
  * as fallback to the context usually provided by a FilterConfig instance.
  * @see org.springframework.web.context.ServletContextAware
  * @see #getServletContext()
  */
 public final void setServletContext(ServletContext servletContext) {
  this.servletContext = servletContext;
 }

 /**
  * Calls the <code>initFilterBean()</code> method that might
  * contain custom initialization of a subclass.
  * <p>Only relevant in case of initialization as bean, where the
  * standard <code>init(FilterConfig)</code> method won't be called.
  * @see #initFilterBean()
  * @see #init(javax.servlet.FilterConfig)
  */
 public void afterPropertiesSet() throws ServletException {
  initFilterBean();
 }


 /**
  * Subclasses can invoke this method to specify that this property
  * (which must match a JavaBean property they expose) is mandatory,
  * and must be supplied as a config parameter. This should be called
  * from the constructor of a subclass.
  * <p>This method is only relevant in case of traditional initialization
  * driven by a FilterConfig instance.
  * @param property name of the required property
  */
 protected final void addRequiredProperty(String property) {
  this.requiredProperties.add(property);
 }

 /**
  * Standard way of initializing this filter.
  * Map config parameters onto bean properties of this filter, and
  * invoke subclass initialization.
  * @param filterConfig the configuration for this filter
  * @throws ServletException if bean properties are invalid (or required
  * properties are missing), or if subclass initialization fails.
  * @see #initFilterBean
  */
 public final void init(FilterConfig filterConfig) throws ServletException {
  Assert.notNull(filterConfig, "FilterConfig must not be null");
  if (logger.isDebugEnabled()) {
   logger.debug("Initializing filter '" + filterConfig.getFilterName() + "'");
  }

  this.filterConfig = filterConfig;

  // Set bean properties from init parameters.
  try {
   PropertyValues pvs = new FilterConfigPropertyValues(filterConfig, this.requiredProperties);
   BeanWrapper bw = PropertyAccessorFactory.forBeanPropertyAccess(this);
   ResourceLoader resourceLoader = new ServletContextResourceLoader(filterConfig.getServletContext());
   bw.registerCustomEditor(Resource.class, new ResourceEditor(resourceLoader));
   initBeanWrapper(bw);
   bw.setPropertyValues(pvs, true);
  }
  catch (BeansException ex) {
   String msg = "Failed to set bean properties on filter '" +
       filterConfig.getFilterName() + "': " + ex.getMessage();
   logger.error(msg, ex);
   throw new NestedServletException(msg, ex);
  }

  // Let subclasses do whatever initialization they like.
  initFilterBean();

  if (logger.isDebugEnabled()) {
   logger.debug("Filter '" + filterConfig.getFilterName() + "' configured successfully");
  }
 }

 /**
  * Initialize the BeanWrapper for this GenericFilterBean,
  * possibly with custom editors.
  * <p>This default implementation is empty.
  * @param bw the BeanWrapper to initialize
  * @throws BeansException if thrown by BeanWrapper methods
  * @see org.springframework.beans.BeanWrapper#registerCustomEditor
  */
 protected void initBeanWrapper(BeanWrapper bw) throws BeansException {
 }


 /**
  * Make the FilterConfig of this filter available, if any.
  * Analogous to GenericServlet's <code>getServletConfig()</code>.
  * <p>Public to resemble the <code>getFilterConfig()</code> method
  * of the Servlet Filter version that shipped with WebLogic 6.1.
  * @return the FilterConfig instance, or <code>null</code> if none available
  * @see javax.servlet.GenericServlet#getServletConfig()
  */
 public final FilterConfig getFilterConfig() {
  return this.filterConfig;
 }

 /**
  * Make the name of this filter available to subclasses.
  * Analogous to GenericServlet's <code>getServletName()</code>.
  * <p>Takes the FilterConfig's filter name by default.
  * If initialized as bean in a Spring application context,
  * it falls back to the bean name as defined in the bean factory.
  * @return the filter name, or <code>null</code> if none available
  * @see javax.servlet.GenericServlet#getServletName()
  * @see javax.servlet.FilterConfig#getFilterName()
  * @see #setBeanName
  */
 protected final String getFilterName() {
  return (this.filterConfig != null ? this.filterConfig.getFilterName() : this.beanName);
 }

 /**
  * Make the ServletContext of this filter available to subclasses.
  * Analogous to GenericServlet's <code>getServletContext()</code>.
  * <p>Takes the FilterConfig's ServletContext by default.
  * If initialized as bean in a Spring application context,
  * it falls back to the ServletContext that the bean factory runs in.
  * @return the ServletContext instance, or <code>null</code> if none available
  * @see javax.servlet.GenericServlet#getServletContext()
  * @see javax.servlet.FilterConfig#getServletContext()
  * @see #setServletContext
  */
 protected final ServletContext getServletContext() {
  return (this.filterConfig != null ? this.filterConfig.getServletContext() : this.servletContext);
 }


 /**
  * Subclasses may override this to perform custom initialization.
  * All bean properties of this filter will have been set before this
  * method is invoked.
  * <p>Note: This method will be called from standard filter initialization
  * as well as filter bean initialization in a Spring application context.
  * Filter name and ServletContext will be available in both cases.
  * <p>This default implementation is empty.
  * @throws ServletException if subclass initialization fails
  * @see #getFilterName()
  * @see #getServletContext()
  */
 protected void initFilterBean() throws ServletException {
 }

 /**
  * Subclasses may override this to perform custom filter shutdown.
  * <p>Note: This method will be called from standard filter destruction
  * as well as filter bean destruction in a Spring application context.
  * <p>This default implementation is empty.
  */
 public void destroy() {
 }


 /**
  * PropertyValues implementation created from FilterConfig init parameters.
  */
 private static class FilterConfigPropertyValues extends MutablePropertyValues {

  /**
   * Create new FilterConfigPropertyValues.
   * @param config FilterConfig we'll use to take PropertyValues from
   * @param requiredProperties set of property names we need, where
   * we can't accept default values
   * @throws ServletException if any required properties are missing
   */
  public FilterConfigPropertyValues(FilterConfig config, Set requiredProperties)
      throws ServletException {

   Set missingProps = (requiredProperties != null && !requiredProperties.isEmpty()) ?
     new HashSet(requiredProperties) : null;

   Enumeration en = config.getInitParameterNames();
   while (en.hasMoreElements()) {
    String property = (String) en.nextElement();
    Object value = config.getInitParameter(property);
    addPropertyValue(new PropertyValue(property, value));
    if (missingProps != null) {
     missingProps.remove(property);
    }
   }

   // Fail if we are still missing properties.
   if (missingProps != null && missingProps.size() > 0) {
    throw new ServletException(
        "Initialization from FilterConfig for filter '" + config.getFilterName() +
        "' failed; the following required properties were missing: " +
        StringUtils.collectionToDelimitedString(missingProps, ", "));
   }
  }
 }

}

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值