コード例 #1
0
ファイル: CommentController.java プロジェクト: suevip/xes
 /** 编辑 */
 @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";
 }