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