File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-boot-docs/src/main/asciidoc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6045,7 +6045,7 @@ for it. Your could define your `@SpringBootApplication` as follows:
6045
6045
----
6046
6046
6047
6047
Because this class is the source configuration for the test, any slice test will actually
6048
- attempt to start Spring Batch, which is definitely now what you want to do. A recommended
6048
+ attempt to start Spring Batch, which is definitely not what you want to do. A recommended
6049
6049
approach is to move that area-specific configuration to a separate `@Configuration`
6050
6050
class at the same level as your application.
6051
6051
@@ -6074,7 +6074,7 @@ application may look like this:
6074
6074
6075
6075
This effectively overrides the default component scan directive with the side effect of
6076
6076
scanning those two packages regardless of the slice that you've chosen. For instance a
6077
- `@DataJpaTest` will all the sudden scan components and user configurations of your
6077
+ `@DataJpaTest` will all of a sudden scan components and user configurations of your
6078
6078
application. Again, moving the custom directive to a separate class is a good way to fix
6079
6079
this issue.
6080
6080
You can’t perform that action at this time.
0 commit comments