Java Spring Boot — Installation

--

To create a new java spring boot application we need at least JDK-17 and an ide to write our codes. I personally prefer to use IntelliJ Community.

So if we set our jdk and ide we can create an application now. To do that let’s visit https://start.spring.io/ and generate our app with following choices. Make sure that you add ‘Spring Web’ dependency to your project.

If everything is ok, generate the app and unzip the downloaded folder. Then open it in Intellij. If you have followed all the steps you should be able to run your application.

--

--