Model接口

/**
 * Model接口
 *      作用:将值存放到request对象
 *
 *
 * @return
 */
@RequestMapping(value = "/testModle")
public String testModle(Model model){
    model.addAttribute("mes","张三");
    System.out.println("执行......");
    return "success";
}
posted @ 2020-07-12 21:00  jock_javaEE  阅读(648)  评论(0编辑  收藏  举报