How to setup a basic SpringBoot application

I spent some time trying to figure out how SpringBoot worked recently. I thought I would document the steps I took to get a project up and running. Here is the final repository in Github. Setup Steps First, create a workspace. mkdir -p ~/projects cd ~/projects mvn archetype:generate -DgroupId=com.tonyzampogna -DartifactId=base-springboot-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false cd ~/projects/base-springboot-app In …

Continue reading How to setup a basic SpringBoot application