慕函数3265425
2018-05-05 11:50
ModelAndView 这个是怎么配置就可以使用的呢 在项目中的spring boot中 我没有见过这个东西啊
@Controller("Test")
public class Test{
@RequestMapping("/")
public ModelAndView one(){`这里写代码片`
ModelAndView mav = new ModelAndView("index");
mav.addObject("name","aaa");
mav.addObject("sex","男");
return mav; //跳转到某一路径下的index.jsp页面
}
@RequestMapping("/")
public String two(Model model){
model.addAttribute("name","aaa");
model.addAttribure("sex", "男");
return "index"; ///跳转到某一路径下的index.jsp页面
}
}
ModelAndView可以说是视图和模型的结合体,看上面代码区别很明显了
SpringBoot开发常用技术整合
102171 学习 · 508 问题
相似问题