Hello World & Paths
Software Development Academy
Posted on April 6, 2021
1. Hello World Application
Creating a simple Hello World application using Spring Web.
Scripts & Snippets
Here is the config for the build.gradle
created in the video.
plugins {
id 'org.springframework.boot' version '2.4.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
}
2. Adding Paths to Controller
How you can add paths to your Controller.
π πͺ π
π©
Software Development Academy
Posted on April 6, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.