ModelAndView包含了两部分信息
视图的逻辑名称:要转到的页面,jsp、velocity、freemarker、pdf/excel
模型数据:要传输的数据
使用servlet输出二进制格式视图:
byte[] binaryContext=...
ServletOutputStream out=response.getOutputStream();
out.write(binaryContext);
out.flush();
out.close();
返回视图和模型过程:
ModelAndView包含了两部分信息
使用servlet输出二进制格式视图:
byte[] binaryContext=...
ServletOutputStream out=response.getOutputStream();
out.write(binaryContext);
out.flush();
out.close();
返回视图和模型过程:
本文标题:ModelAndView
本文链接:https://www.haomeiwen.com/subject/cyhvrxtx.html
网友评论