Package com.cawring.simple.result

Examples of com.cawring.simple.result.ViewResult


   * @param model : model값 - 넘길 파라미터
   * @return
   */
  public Result html(String path, Model model)
  {
    ViewResult html = new HtmlResult(path, model, request, response);
    return html.render();
  }
View Full Code Here

TOP

Related Classes of com.cawring.simple.result.ViewResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.