注释类型 TestComponent
@Target(TYPE) @Retention(RUNTIME) @Documented @Component public @interface TestComponent
@Component
that can be used when a bean is intended only for tests, and should be excluded from Spring Boot's component scanning.Note that if you directly use
@ComponentScan
rather than relying on@SpringBootApplication
you should ensure that aTypeExcludeFilter
is declared as anexcludeFilter
.- 从以下版本开始:
- 1.4.0
- 另请参阅:
TypeExcludeFilter
,TestConfiguration