Exemplo n.º 1
0
 /** 编辑 */
 @RequestMapping(value = "/{id}/edit")
 public String edit(ModelMap model, @PathVariable java.lang.Long id) throws Exception {
   Comment comment = (Comment) commentManager.getById(id);
   model.addAttribute("comment", comment);
   return "/jtzs/comment/edit";
 }