@@ -11,7 +11,7 @@ Starting with version 2, Spring Shell has been rewritten from the ground up with
11
11
enhancements in mind, one of which is easy integration with Spring Boot, although it is
12
12
not a strong requirement.
13
13
For the purpose of this tutorial, let's create a simple Boot application, for example
14
- using http ://start.spring.io. This minimal application only depends on `spring-boot-starter`
14
+ using https ://start.spring.io. This minimal application only depends on `spring-boot-starter`
15
15
and configures the `spring-boot-maven-plugin`, generating an executable über-jar:
16
16
17
17
[source, xml]
@@ -45,7 +45,7 @@ configuring only the necessary beans as needed:
45
45
====
46
46
Given that Spring Shell will kick in and start the REPL by virtue of this dependency being present,
47
47
you'll need to either build skipping tests (`-DskipTests`) throughout this tutorial or remove the sample integration test
48
- that was generated by http ://start.spring.io. If you don't do so, the integration test will create
48
+ that was generated by https ://start.spring.io. If you don't do so, the integration test will create
49
49
the Spring `ApplicationContext` and, depending on your build tool, will stay stuck in the eval loop or crash with a NPE.
50
50
====
51
51
@@ -86,7 +86,7 @@ java -jar target/demo-0.0.1-SNAPSHOT.jar
86
86
----
87
87
88
88
You'll be greeted by the following screen (the banner comes from Spring Boot, and can be customized
89
- http ://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-banner[as usual]):
89
+ https ://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-banner[as usual]):
90
90
91
91
[source]
92
92
----
451
451
[[validating-command-arguments]]
452
452
=== Validating Command Arguments
453
453
454
- Spring Shell integrates with the http ://beanvalidation.org/[Bean Validation API] to support
454
+ Spring Shell integrates with the https ://beanvalidation.org/[Bean Validation API] to support
455
455
automatic and self documenting constraints on command parameters.
456
456
457
457
Annotations found on command parameters as well as annotations at the method level will be
@@ -814,7 +814,7 @@ public class MyClear implements Clear.Command {
814
814
.Please Consider Contributing your Changes
815
815
====
816
816
If you feel like your implementation of a standard command could be valuable to the community,
817
- please consider opening a pull-request at http ://github.com/spring-projects/spring-shell.
817
+ please consider opening a pull-request at https ://github.com/spring-projects/spring-shell.
818
818
819
819
Alternatively, before making any changes on your own, you can open an issue with the project. Feedback is
820
820
always welcome!
0 commit comments