Examples of TemplateView


Examples of com.firefly.mvc.web.view.TemplateView

@Controller
public class IndexController {
  @RequestMapping(value = "/index")
  public View index(HttpServletRequest request, HttpServletResponse response) {
    request.setAttribute("info", new String[]{"hello firefly", "test"});
    return new TemplateView("/index.html");
  }
View Full Code Here

Examples of com.firefly.mvc.web.view.TemplateView

  }
 
  @RequestMapping(value = "/document/?/?")
  public View document(HttpServletRequest request, @PathVariable String[] args) {
    request.setAttribute("info", args);
    return new TemplateView("/index.html");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.