Spring/스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술

[ 스프링 웹 개발 기초 ] MVC 와 템플릿 엔진

alsruds 2023. 9. 7. 15:32

🙂강의🙂

https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%EC%9E%85%EB%AC%B8-%EC%8A%A4%ED%94%84%EB%A7%81%EB%B6%80%ED%8A%B8

 

[무료] 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 - 인프런 | 강의

스프링 입문자가 예제를 만들어가면서 스프링 웹 애플리케이션 개발 전반을 빠르게 학습할 수 있습니다., 스프링 학습 첫 길잡이! 개발 공부의 길을 잃지 않도록 도와드립니다. 📣 확인해주세

www.inflearn.com

 

  • MVC : Model, View, Controller

 

1. src/main/java/hello.hellospring/controller/HelloController 에 GetMapping 추가하기

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.annotation.RequestParam;

@Controller
public class HelloController {

    ...

    @GetMapping("hello-mvc")
    public String helloMvc(@RequestParam("name") String name, Model model) {
        model.addAttribute("name", name);
        return "hello-template";
    }
}

 

2. src/resources/templates 에 hello-template.html 추가하기

<!DOCTYPE html>
<!-- thymeleaf 문법 사용 가능 -->
<html xmlns:th="http://www.thymeleaf.org">
<body>
<!-- key 값이 name 인 value 반환 (HelloController 에서 정의) -->
<p th:text="'hello ' + ${name}">hello! empty</p>
</body>
</html>

 

3. 웹 브라우저에서 확인하기

성공 ~

 

  • 동작 방식