@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");
}