We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b519005 commit f7e5a5eCopy full SHA for f7e5a5e
spring-shell-docs/modules/ROOT/pages/getting-started.adoc
@@ -66,6 +66,18 @@ dependencyManagement {
66
}
67
----
68
69
+IMPORTANT: Versions up to `3.2.x` had all runners enabled by default, starting from `3.3.x`
70
+only `NonInteractiveShellRunner` is enabled by default. This means you need to enable
71
+`InteractiveShellRunner` to get REPL.
72
+
73
+[source, yaml]
74
+----
75
+spring:
76
+ shell:
77
+ interactive:
78
+ enabled: true
79
80
81
CAUTION: Given that Spring Shell starts the REPL (Read-Eval-Print-Loop) because this
82
dependency is present, you need to either skip tests when you build (`-DskipTests`)
83
throughout this tutorial or remove the sample integration test that was generated
0 commit comments