@Target(value=TYPE)
@Retention(value=RUNTIME)
@Documented
public @interface TypeExcludeFilters
TypeExcludeFilter classes
that should be applied to @SpringBootApplication
component scanning.TypeExcludeFilter| Modifier and Type | Required Element and Description |
|---|---|
java.lang.Class<? extends org.springframework.boot.context.TypeExcludeFilter>[] |
value
Specifies
TypeExcludeFilter classes that should be applied to
@SpringBootApplication component scanning. |
public abstract java.lang.Class<? extends org.springframework.boot.context.TypeExcludeFilter>[] value
TypeExcludeFilter classes that should be applied to
@SpringBootApplication component scanning. Classes
specified here can either have a no-arg constructor or accept a single
Class<?> argument if they need access to the testClass.TypeExcludeFilter