This commit is contained in:
Johnny Lim
2017-11-18 21:33:25 +09:00
committed by Phillip Webb
parent 7ff2cb5dc8
commit 73c65286ea
7 changed files with 8 additions and 8 deletions

View File

@@ -6686,7 +6686,7 @@ It then becomes important not to litter the application's main class with config
settings that are specific to a particular area of its functionality.
Assume that you are using Spring Batch and you rely on the auto-configuration for it.
Your could define your `@SpringBootApplication` as follows:
You could define your `@SpringBootApplication` as follows:
[source,java,indent=0]
----
@@ -6708,7 +6708,7 @@ at the same level as your application, as shown in the following example:
----
NOTE: Depending on the complexity of your application, you may either have a single
`ApplicationConfiguration` class for your customizations or one class per domain area when
`@Configuration` class for your customizations or one class per domain area when
it makes sense. The latter approach lets you enable it in one of your tests, if necessary,
with the `@Import` annotation.