클래스명 : HTML 렌터링 패키지명 : com.cawring.simple.result.impl 파일명 : HtmlResult.java 설명 : freemarker로 화면을 제공한다.
3031323334353637
* @param model : model값 - 넘길 파라미터 * @return */ public Result html(String path, Model model) { ViewResult html = new HtmlResult(path, model, request, response); return html.render(); }