반응형

# 스프링 웹 개발 기초

## 정적 컨텐츠

  • 파일을 그대로 웹 브라우저에서 고객에게 전달해 주는것.
<!DOCTYPE HTML>
<html>
<head>
   <title>static content</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
	정적 컨텐츠 입니다.
</body>
</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
<html xmlns:th="http://www.thymeleaf.org">
<body>
<p th:text="'hello ' + ${name}">hello! empty</p>
</body>
</html>
  • Thymeleaf 의 장점 : 서버 없이 html 파일 자체로도 확인 가능 
  • 위 코드 작성 후 run 하여 실행 시 인터넷 주소창에 아래처럼 입력하여 확인 가능하다.
http://localhost:8080/hello-mvc?name=spring
  • MVC와 템플릿 엔진 이미지

## API

  • @ResponseBody 문자 반환
@ResponseBody 를 사용하면 뷰 리졸버( viewResolver )를 사용하지 않음

대신 HTTP의 BODY에 문자 내용을 직접 반환(HTML BODY TAG를 말하는 것이 아님)
  • Controller
@Controller
public class HelloController {
	
    @GetMapping("hello-string")
    @ResponseBody
    public String helloString(@RequestParam("name") String name) {
	
    	return "hello " + name;
	}
}
  • @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 가 동작
  • 기본 문자처리 : StringHttpMessageConverter
  • 기본 객체처리 : MappingJackson2HttpMessageConverter
  • byte 처리 등등 기타 여러 HttpMessageConverter가 기본으로 등록되어 있다.
  • 참고 : 클라이언트의 HTTP Accept 해더와 서버의 컨트롤러 반환 타입 정보 둘을 조합해서 HttpMessageConverter 가 선택된다. 

 

출처 : 인프런 스프링 입문

반응형

+ Recent posts