ModelAndView
2017-08-15 本文已影响17人
xiao_fei_yu
ModelAndView包含了两部分信息
视图的逻辑名称:要转到的页面,jsp、velocity、freemarker、pdf/excel
模型数据:要传输的数据
使用servlet输出二进制格式视图:
byte[] binaryContext=...
ServletOutputStream out=response.getOutputStream();
out.write(binaryContext);
out.flush();
out.close();
返回视图和模型过程: