I had the opportunity to create a simple web project, and until now I had created the project from scratch myself, but with all my might ** SPRING INITIALIZR **, the chick of Spring Boot
There is a web service that creates a shape project, so I tried using it after studying.
As mentioned above, just select the build tool (Maven
/ Gradle
), language (Java
/ Groovy
/ Kotlin
), and Spring Boot version to be used on the Web, and you will be able to create a project. It is a god service that is perfect for Spring Boot users to create it.
This time
I made a hina platform.
Go to ** here **, select the architecture you like, and press the ** Generate Project button ** at the bottom.
The zip file ** download ** will be completed in a few seconds.
Extract the downloaded zip file to any directory and enter it.
The extracted file contains ** gradlew ** and ** gradlew.bat **, so execute the command.
command
./gradlew
After a short wait, the build will ** complete **.
The following command will ** start ** the app.
command
./gradlew bootrun
When you access http: // localhost: 8080 /, the following ** error screen ** is displayed.
It took less than ** 5 minutes ** from ** download ** to ** tomcat startup confirmation ** of the zip file.
** Shugoi **
It's just one word.
You can create a project without any knowledge, so it is recommended for those who are new to Spring Boot
.
After that, it is possible to ** implement a web application ** by ** fleshing out this project more and more **.
Everyone, please ** use ** in case of ** new project ** ♪
Recommended Posts