-
정적 컨텐츠: 파일을 그대로~
MVC와 템플릿 엔진: 템플릿 엔진을 MVC 방식으로 쪼개서, view를 템플릿 엔진으로 html을 좀 더 프로그래밍한거로 랜더링 해서 이 html을 client에게 전달
API: 객체 전달
@Controller public class HelloController { //기본 @GetMapping("hello") public String hello(Model model){ model.addAttribute("data","hello!"); return "hello"; } //mvc @GetMapping("hello-mvc") public String heeloMvc(@RequestParam(value = "name", required = false) String name, Model model){ model.addAttribute("name",name); return "hello-template"; } //response body, 단순 문자열 @GetMapping("hello-string") @ResponseBody public String helloString(@RequestParam("name") String name){ return "hello" + name; } //response body, 객체 전달 @GetMapping("hello-api") @ResponseBody public Hello helloApi(@RequestParam("name") String name){ Hello hello = new Hello(); hello.setName("jiwonWee"); return hello; } static class Hello{ private String name; public String getName(){ return this.name; } public void setName(String name){ this.name = name; } } }
'2021년 > 개발공부' 카테고리의 다른 글
맥에서 Go 설치하기 (0) 2021.03.18 파이썬 유닛테스트 (0) 2021.03.18 Intellij+git (0) 2021.03.08 스프링 시작하기 #1 (0) 2021.03.08 유투브 알고리즘을 따라해보자! 유사 유투바 알고리즘 만들기 (0) 2021.03.02