Skip to content

karl-park/study-spring-boot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors