Spring Web MVC framework
- Model-View-Controller (MVC) architecture
- Model : POJO
- View : Rendering HTML(UI), JSON(Data)
- Controller : Handle request and build model and pass to view
WebApplicationContext extends ApplicationContext
DispatcherServlet
- http request
- handle request
- Controller
- View Resolver
- View
- http response
@Controller
vs @RestController
@Controller
๋ ์ฃผ๋ก Web ํ์ด์ง์ ์ปจํธ๋กค๋ฌ์์ ์ฌ์ฉ
- Web ํ์ด์ง์ฉ ์ปจํธ๋กค๋ฌ๋ ํ
ํ๋ฆฟ ์์ง View๋ JSP๋ก ์ ํ ์๋ต์ HTML์ ์์ฑํ๊ธฐ ๋๋ฌธ์ ๊ธฐ๋ณธ์ ์ผ๋ก ๋ฉ์๋์ ๋ฐํ๊ฐ์ View ์ ํ ๋์์ ์ง์ ํ๋ ๋ฐ ์ฌ์ฉ
@RestController
๋ Json์ด๋ XML ๋ฑ์ ๋ฐํ WebAPI ์ฉ ์ปจํธ๋กค๋ฌ๋ก ์ฌ์ฉ
- View๋ก ์ ํํ์ง ์๊ธฐ ๋๋ฌธ์ ๋ฉ์๋์ ๋ฐํ๊ฐ์ ์๋ต(response)์ ๋ด์ฉ(content) ํ์
web.xml
related
ref