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.
Top comments (0)