ModelAndView

ModelAndView包含了两部分信息

视图的逻辑名称:要转到的页面,jsp、velocity、freemarker、pdf/excel

模型数据:要传输的数据


使用servlet输出二进制格式视图:

byte[] binaryContext=...

ServletOutputStream out=response.getOutputStream();

out.write(binaryContext);

out.flush();

out.close();

返回视图和模型过程:

你可能感兴趣的:(ModelAndView)