Added Spring Boot extension

This commit is contained in:
Erik C. Thauvin 2023-10-25 20:38:39 -07:00
parent 51a2cfee1c
commit dff0d88182
5 changed files with 48 additions and 6 deletions

View file

@ -1,6 +1,8 @@
# Spring Boot Example for [b<span style="color:orange">l</span>d](https://rife2.com/bld)
Based on the Spring Guides' Spring Boot web application example. Please be sure to read the [guide](https://github.com/spring-guides/gs-spring-boot) for a sampling of how Spring Boot can help you accelerate application development
Based on the Spring Guides' Spring Boot web application example. Please be sure to read the
[guide](https://spring.io/guides/gs/spring-boot/) for a sampling of how Spring Boot can help
you accelerate application development
## Run the Application
@ -31,3 +33,10 @@ To run the web application tests, issue the following command:
```
./bld test
```
## To create and launching the executable JAR
```
./bld jar
java -jar build/dist/demoapplication-0.1.0.jar
```