Merge pull request #6007 from izeye:rename

* pr/6007:
  Rename AutoConfigurationJson to AutoConfigureJson
pull/6007/merge
Stephane Nicoll 9 years ago
commit 3cff46f4da

@ -39,6 +39,6 @@ import org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration;
@Retention(RetentionPolicy.RUNTIME)
@Documented
@ImportAutoConfiguration({ GsonAutoConfiguration.class, JacksonAutoConfiguration.class })
public @interface AutoConfigurationJson {
public @interface AutoConfigureJson {
}

@ -39,7 +39,7 @@ import org.springframework.test.context.BootstrapWith;
* serialization.
* <p>
* Using this annotation will disable full auto-configuration and instead apply only
* configuration relevant to Json tests (i.e. {@code @JsonComponent}, Jackson
* configuration relevant to JSON tests (i.e. {@code @JsonComponent}, Jackson
* {@code Module})
* <p>
* By default, tests annotated with {@code JsonTest} will also initialize
@ -47,7 +47,7 @@ import org.springframework.test.context.BootstrapWith;
* provided via the {@link AutoConfigureJsonTesters @AutoConfigureJsonTesters} annotation.
*
* @author Phillip Webb
* @see AutoConfigurationJson
* @see AutoConfigureJson
* @see AutoConfigureJsonTesters
* @see AutoConfigureCache
* @since 1.4.0
@ -60,7 +60,7 @@ import org.springframework.test.context.BootstrapWith;
@OverrideAutoConfiguration(enabled = false)
@TypeExcludeFilters(JsonExcludeFilter.class)
@AutoConfigureCache
@AutoConfigurationJson
@AutoConfigureJson
@AutoConfigureJsonTesters
public @interface JsonTest {

Loading…
Cancel
Save