@TargetSE(valueSE=TYPESE) @RetentionSE(valueSE=RUNTIMESE) @DocumentedSE @InheritedSE @BootstrapWith(value=org.springframework.boot.test.autoconfigure.data.redis.DataRedisTestContextBootstrapper.class) @ExtendWith(value=org.springframework.test.context.junit.jupiter.SpringExtension.class) @OverrideAutoConfiguration(enabled=false) @TypeExcludeFilters(value=org.springframework.boot.test.autoconfigure.data.redis.DataRedisTypeExcludeFilter.class) @AutoConfigureCache @AutoConfigureDataRedis @ImportAutoConfiguration public @interface DataRedisTest
@RunWith(SpringRunner.class) と組み合わせて使用できるアノテーション。テストが Redis コンポーネントのみに焦点を当てている場合に使用できます。このアノテーションを使用すると、完全な自動構成が無効になり、代わりに Redis テストに関連する構成のみが適用されます。
| 修飾子と型 | オプションの要素と説明 |
|---|---|
ClassSE<?>[] | excludeAutoConfiguration このテストに適用する必要がある自動構成の除外。 |
org.springframework.context.annotation.ComponentScan.Filter[] | excludeFilters それ以外の場合はアプリケーションコンテキストに追加される Bean のフィルタリングに使用できる除外フィルターのセット。 |
org.springframework.context.annotation.ComponentScan.Filter[] | includeFilters 他の方法でフィルタリングされた Bean をアプリケーションコンテキストに追加するために使用できる一連の組み込みフィルター。 |
StringSE[] | properties テストを実行する前に Spring Environment に追加する必要がある key = value 形式のプロパティ。 |
boolean | useDefaultFilters@SpringBootApplication でデフォルトのフィルタリングを使用するかどうかを決定します。 |
public abstract StringSE[] properties
Environment に追加する必要がある key = value 形式のプロパティ。public abstract boolean useDefaultFilters
@SpringBootApplication でデフォルトのフィルタリングを使用するかどうかを決定します。デフォルトでは、Bean は含まれません。includeFilters(), excludeFilters()public abstract org.springframework.context.annotation.ComponentScan.Filter[] includeFilters
public abstract org.springframework.context.annotation.ComponentScan.Filter[] excludeFilters
@AliasFor(annotation=ImportAutoConfiguration.class, attribute="exclude") public abstract ClassSE<?>[] excludeAutoConfiguration
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.