@TargetSE(valueSE=TYPESE) @RetentionSE(valueSE=RUNTIMESE) @DocumentedSE @InheritedSE @BootstrapWith(value=org.springframework.boot.test.autoconfigure.json.JsonTestContextBootstrapper.class) @ExtendWith(value=org.springframework.test.context.junit.jupiter.SpringExtension.class) @OverrideAutoConfiguration(enabled=false) @TypeExcludeFilters(value=JsonTypeExcludeFilter.class) @AutoConfigureCache @AutoConfigureJson @AutoConfigureJsonTesters @ImportAutoConfiguration public @interface JsonTest
このアノテーションを使用すると、完全な自動構成が無効になり、代わりに JSON テストに関連する構成のみが適用されます (つまり、@JsonComponent、Jackson Module)
デフォルトでは、JsonTest でアノテーションが付けられたテストは、JacksonTester、JsonbTester、GsonTester フィールドも初期化します。@AutoConfigureJsonTesters アノテーションを使用して、よりきめ細かな制御を提供できます。
JUnit 4 を使用する場合、このアノテーションは @RunWith(SpringRunner.class) と組み合わせて使用する必要があります。
AutoConfigureJson, AutoConfigureJsonTesters, AutoConfigureCache| 修飾子と型 | オプションの要素と説明 |
|---|---|
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 で使用するかどうかを決定します。デフォルトでは、@JsonComponent および Module 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.