@RestController
@RequestMapping("/html")
public class MainController {
/**
* 返回网页模板
*
* @param model
* @return
*/
@RequestMapping("/index")
public ModelAndView hello(Model model) {
model.addAttribute("name", "bruce");
ModelAndView mv = new ModelAndView("index");
mv.addObject(model);
return mv;
}
}