DEV Community

Cover image for Hello World & Paths
Software Development Academy
Software Development Academy

Posted on • Updated on

Hello World & Paths

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'
}
Enter fullscreen mode Exit fullscreen mode

GitHub Repo Tag

2. Adding Paths to Controller

How you can add paths to your Controller.

GitHub Repo Tag


Previous article | Next article

Top comments (0)