nView (org.springframework.web.servlet.mvc.View)
nResponsible
for rendering output
nMust
implement void
render(model, request, response)
nThis is
the MVC view for a web interaction. Implementations are responsible for rendering content, and exposing the
model.
n
nModel
nTo complete
the MVC trio, note that the model is typically handled as a java.util.Map which is
returned with the view
nthe values of the model are available, for example in a
JSP, using a <jsp:useBean/> where
the id corresponds to the key value in the Map
n