Section 2. 스프링 웹 개발 기초
정적 컨텐츠
static/hello-static.html
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
정적 컨텐츠 입니다
</body>
</html>
-> localhost:8080/hello-static.html
웹 브라우저 - localhost:8080/hello-static.html -> [스프링 부트] 내장 톰켓 서버
- 1 -> [스프링 컨테이너] hello-static 관련 컨트롤러 X
- 2 -> resources: static/hello-static.html
- hello-static.html -> 웹 브라우저
MVC와 템플릿 엔진
MVC: Model, View, Controller
Controller
package hello.hellospring.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HelloController {
@GetMapping("hello-mvc")
public String helloMvc(@RequestParam("name") String name, Model model) {
model.addAttribute(attributeName: "name", name);
return "hello-template";
}
View
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymleaf.org">
<body>
<p th:text="'안녕하세요. ' + ${name}">hello! empty</p>
</body>
</html>
웹 브라우저 - localhost:8080/hello-mvc -> [스프링 부트] 내장 톰켓 서버 -> [스프링 컨테이너] helloController
- return: hello-template/ model(name:spring) -> [스프링 컨테이너] viewResolver; templates/hello-template.html(Thymeleaf 템플릿 엔진 처리) - HTML (변환 후) -> 웹 브라우저
API
@ResponseBody 문자 반환
package hello.hellospring.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HelloController {
@GetMapping("hello-string")
@ResponseBody
public String helloString(@RequestParam("name") String name) {
return "hello" + name; // hello spring
}
@GetMapping("hello-api")
@ResponseBody
public Hello helloApi(@RequestParam("name") String name( {
Hello hello = new Hello();
hello.setNmae(name);
return hello;
}
static class Hello {
private String naem;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
}
@ResponseBody 객체 반환
package hello.hellospring.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HelloController {
@GetMapping("hello-api")
@ResponseBody
public Hello helloApi(@RequestParam("name") String name( {
Hello hello = new Hello();
hello.setNmae(name);
return hello;
}
static class Hello {
private String naem;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
}
웹 브라우저 - localhost:8080/hello-api -> [스프링 부트] 내장 톰켓 서버 -> [스프링 컨테이너] helloController
- @ResponseBody/ return: hello(name:spring) -> [스프링 컨테이너] HTTPMessageConverter; JsonConverter/ StringConverter - {name: spring} -> 웹 브라우저
@ResponseBody 사용
- HTTP의 BODY에 문자 내용 직접 반환
- 'viewResolver' 대신에 'HttpMessageConverter'가 동작
- 기본 문자처리: 'StringHttpMessageConverter'
- 기본 객체처리: 'MappingJackson2HttpMessageConverter'
- byte 처리 등등 기타 여러 HttpMessageConverter가 기본으로 등록
*참고
클라이언트 HTTP Accept 헤더와 서버의 컨트롤러 반환 타입 정보 조합 -> 'HttpMessageConverter'가 선택