karl-park / study-spring-boot

Studying Spring Boot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

study-spring-boot

Studying Spring Boot

Reference:

  1. https://start.spring.io/
  2. https://docs.spring.io/spring-boot/docs/2.1.18.RELEASE/reference/html/index.html
  3. https://docs.spring.io/spring-boot/docs/current/reference/html/features.html#features.kotlin

Day1

맛보기

Install & Hello World

// app.groovy
@RestController
class ThisWillActuallyRun {

	@RequestMapping("/")
	String home() {
		"Hello World!"
	}

}

and run it

$ spring run ./app.groovy

# goto http://localhost:8080/ then you can see the page printing "Hello World"

Kotlin Supports

Initializr

image

About

Studying Spring Boot