Search

SpringBoot ν”„λ‘œμ νŠΈ 생성

SpringBoot ν”„λ‘œμ νŠΈ 생성

Spring Inializr : Create a Gradle Project

버전 선택

μ–Έμ–΄ 선택 : Java

Group Id 지정 : com.aloha

Artifact Id 지정 : hello

Pacakge Type 지정 : War

JDK 버전 지정 : 17

Dependencies 지정

β€’
Spring Web
β€’
Thymeleaf

index.html

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hello</title> </head> <body> <h1>Hello Spring Boot~!</h1> <h3>μŠ€ν”„λ§ λΆ€νŠΈ μ‹œμž‘ν•˜κΈ°</h3> </body> </html>
HTML
볡사