Package com.firefly.mvc.web.view

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


  }
 
  @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

Related Classes of com.firefly.mvc.web.view.TemplateView

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.