Creating a simple application
Now that we have a basic idea of the starters that are available to us, let's go ahead and create our application template at http://start.spring.io.
How to do it...
The application that we are going to create is a book catalog management system. It will keep a record of books that were published, who the authors were, the reviewers, publishing houses, and so forth. We will name our project BookPub, and apply the following steps:
- First let's switch to the full version by clicking the link below the
Generate Project alt +button - Choose
Gradle Projectat the top - Use
Spring Bootversion2.0.0(SNAPSHOT) - Use the default proposed
Groupname:com.example - Enter
bookpubfor anArtifactfield - Provide
BookPubas aNamefor the application - Specify
com.example.bookpubas ourPackage Name - Select
JarasPackaging - Use
Java Versionas8 - Select the
H2,JDBC, andJPAstarters from theSearch for dependenciesselection so that we can get the needed artifacts in ourbuildfile to connect to...