정적 컨텐츠
<!DOCTYPE HTML>
<html>
<head>
<title>static content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
정적 컨텐츠 입니다.
</body>
</html>
* 실행 시 http://localhost:8080/hello-static.html
MVC와 템플릿 엔진
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
<html xmlns:th="http://www.thymeleaf.org">
<body>
<p th:text="'hello ' + ${name}">hello! empty</p>
</body>
</html>
API
@ResponseBody 문자 반환
@Controller
public class HelloController {
@GetMapping("hello-string")
@ResponseBody
public String helloString(@RequestParam("name") String name) {
return "hello " + name;
}
}
* @ResponseBody를 사용, 이때, 뷰 리졸버(viewResolver)는 사용하지 않음
단, HTTP의 BODY에 문자 내용을 직접 반환
@ResponseBody 객체 반환
@Controller
public class HelloController {
@GetMapping("hello-api")
@ResponseBody
public Hello helloApi(@RequestParam("name") String name) {
Hello hello = new Hello();
hello.setName(name);
return hello;
}
static class Hello {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
}
* @ResponseBody를 사용하되 객체를 반환하는 경우 객체가 JSON으로 변환
@ResponseBody 사용
- HTTP BODY 문자 내용 직접 반환
- viewResolver 대신 HttpMessageConverter 동작
- byte 처리 등 기타 여러 HttpMessageConverter가 기본으로 등록
| 기본 문자처리: StringHttpMessageConverter
| 기본 객체처리: MappingJackson2HttpMessageConverter
'백엔드 > 인프런_스프링' 카테고리의 다른 글
6. 스프링 DB 접근 기술 (0) | 2024.11.23 |
---|---|
5. 회원 관리 예제 - 웹 MVC 개발 (1) | 2024.11.16 |
4. 스프링 빈과 의존관계 (0) | 2024.11.16 |
3. 회원 관리 예제 - 백엔드 개발 (0) | 2024.11.16 |
1. 프로젝트 환경 설정 (1) | 2024.11.09 |