美文网首页
ModelAndView

ModelAndView

作者: xiao_fei_yu | 来源:发表于2017-08-15 16:08 被阅读17次

    ModelAndView包含了两部分信息

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

    模型数据:要传输的数据

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

    byte[] binaryContext=...

    ServletOutputStream out=response.getOutputStream();

    out.write(binaryContext);

    out.flush();

    out.close();

    返回视图和模型过程:

    相关文章

      网友评论

          本文标题:ModelAndView

          本文链接:https://www.haomeiwen.com/subject/cyhvrxtx.html