@Target(value={TYPE,METHOD}) @Retention(value=RUNTIME) @Documented @ConditionalOnMissingBean(parameterizedContainer=org.springframework.boot.web.servlet.FilterRegistrationBean.class) public @interface ConditionalOnMissingFilterBean
Conditional that only matches when no Filter beans of the specified
type are contained in the BeanFactory. This condition will detect both directly
register Filter beans as well as those registered via a
FilterRegistrationBean.
When placed on a @Bean method, the bean class defaults to the return type of
the factory method:
@AliasFor(annotation=ConditionalOnMissingBean.class) public abstract Class<? extends javax.servlet.Filter>[] value
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.