본문 바로가기
Spring/스프링 입문

[Spring] 2-2. MVC와 템플릿 엔진

by ♡˖GYURI˖♡ 2023. 10. 31.

MVC : Model, View, Controller

 

 

Controller

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

 

 

View

resources/templates/hello-template.html

<html xmlns:th="http://www.thymeleaf.org">
    <body>
    	<p th:text="'hello ' + ${name}">hello! empty</p>
    </body>
</html>

실행 : http://localhost:8080/hello-mvc?name=spring

 

MVC, 템플릿 엔진 이미지

 

 

 


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

 

'Spring > 스프링 입문' 카테고리의 다른 글

[Spring] 3. 회원 관리 예제  (1) 2023.10.31
[Spring] 2-3. API  (1) 2023.10.31
[Spring] 2-1. 정적 컨텐츠  (0) 2023.10.31
[Spring] 1-4. 빌드하고 실행하기  (0) 2023.10.30
[Spring] 1-3. View 환경설정  (0) 2023.10.30