로딩
요청 처리 중입니다...

Spring Boot - MVC 2

 Spring Boot - MVC 2

이번엔 GET 방식으로 파라미터를 받아서 페이지에 띄워보도록 할게요. hello-template Hello Page 타임리프 템플릿

hello!

empty Controller package hello.hellospring.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.ann...

원문 링크 : Spring Boot - MVC 2