美文网首页
2018-01-02

2018-01-02

作者: 老文_汉水 | 来源:发表于2018-01-02 10:19 被阅读0次
    @RequestMapping(value = "/printTemplate.bo")
    public ModelAndView printTemplate(HttpServletRequest request, BaseRequest breq) {
        ModelAndView mav = new ModelAndView();
        BaseResponse bres = new BaseResponse(getService().getEcode());
        try {
            getService().printTemplate(request, breq, bres, mav);
        } catch (Exception e) {
            setMAVOnException(request, e, mav);
        }
        if (log.isInfoEnabled()) {
            log.info("to : \r\n" + mav.toString());
        }
        return mav;
    }
    

    相关文章

      网友评论

          本文标题:2018-01-02

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