Spring Web MVC
spring-webmvc
: 서블릿(Servlet) API를 기반으로 클라이언트의 요청을 처리하는 모듈Model
View
Controller
Spring MVC 동작 방식 / 구성 요소
DispatcherServlet의 역할
JSON (JavaScript Object Notation)
{"속성":"값"}
JSON 변형 방법 : GSON 라이브러리 사용
public class JsonExample {
public static void main(String[] args) {
Coffee coffee = new Coffee("아메리카노", "Americano", 3000);
Gson gson = new Gson();
String jsonString = gson.toJson(coffee);
System.out.println(jsonString);
}
}