Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.02 KB

README.md

File metadata and controls

23 lines (15 loc) · 1.02 KB

spring-boot-minimal-webapp

A minimal webapp built with Spring Boot.

This code started with the code available at this tutorial, as of 2019-09-16, 5pm

What can you do with this code?

Command What it does
mvn compile Should result in a clean compile
mvn test Runs one sucessful test
mvn package Builds the jar file target/gs-spring-boot-0.1.0.jar
java -jar target/gs-spring-boot-0.1.0.jar If done after mvn package, runs the code to startup a web server. Access it via http://localhost:8080 on the same machine where the server is running. Use CTRL/C to stop it.