Update docs for getting started

- Add note for interactive mode
- Fixes #1108
This commit is contained in:
Janne Valkealahti
2024-08-14 07:48:48 +01:00
parent 2786b0159e
commit b09939856c

View File

@@ -66,6 +66,18 @@ dependencyManagement {
}
----
IMPORTANT: Versions up to `3.2.x` had all runners enabled by default, starting from `3.3.x`
only `NonInteractiveShellRunner` is enabled by default. This means you need to enable
`InteractiveShellRunner` to get REPL.
[source, yaml]
----
spring:
shell:
interactive:
enabled: true
----
CAUTION: Given that Spring Shell starts the REPL (Read-Eval-Print-Loop) because this
dependency is present, you need to either skip tests when you build (`-DskipTests`)
throughout this tutorial or remove the sample integration test that was generated