/** * 查看用户信息详情页。 * * @param model 查询参数,携带ID * @return 用户信息详情页 */ @RequestMapping("/detail") public String detail(User model, Map<String, Object> maps) { model = userServiceImpl.get(model.getId()); maps.put("model", model); // 将model放入视图中,供页面视图使用 return "user/detail"; }
/** * 跳转到编辑信息页面 * * @param model 查询参数,携带ID * @return 编辑页面 */ @RequestMapping("/edit") public String edit(User model, Map<String, Object> maps) { model = userServiceImpl.get(model.getId()); maps.put("model", model); return "user/edit"; }
/** * 根据Id获得用户信息实体,Json格式。 * * @param id 参数id * @return 用户信息实体 */ @ResponseBody @RequestMapping("/get") public User get(String id) { User model = userServiceImpl.get(id); return model; }