- 所有已实现的接口:
- javax.servlet.Filter, org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanNameAware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.InitializingBean, org.springframework.context.EnvironmentAware, org.springframework.core.env.EnvironmentCapable, org.springframework.web.context.ServletContextAware
@Component
@ConditionalOnProperty(value="radish.web.access-log.enable",
havingValue="true",
matchIfMissing=true)
public class AccessLogFilter
extends org.springframework.web.filter.OncePerRequestFilter
访问日志拦截器,可以通过配置控制是否启用,默认启用
- 从以下版本开始:
- : 1.0.0
- 作者:
- zzq0324