We have summarized the procedure for building a project environment using Spring Boot. I often forget the procedure, so I will write up to push to Github for myself.
Spring Boot 2.3.1 (Spring Framework 5.2.7) Java11 (OpenJDK 11.0.2) Intellij Community Edition 2019.1.3
If you do not have Java 11, the following article will be helpful. Install OpenJDK 11 on macOS with Homebrew
For Intellij Ultimate Edition, Spring Initizalizr is fine.
Install the "Spring Assistant" plugin.
Restart Intellij and create a new project. If you choose Spring Assistant, you can easily create a project like Spring Initializr. The set value is
Choose.
Dependencies can be added later, so add only the minimum. I put in Spring Web.
First, create a new repository on Github. Use the one that pushes the existing repository. Execute the following command in the local repository created earlier.
git init
git add .
git cm -m "initial commit"
git remote add origin [email protected]:pandarkness/sample.git
git push -u origin master
I was able to easily create a working Spring application.