コード例 #1
0
ファイル: ContentService.java プロジェクト: whatsToday/what
 public void insert(CommentsVo commentsVo) {
   commentsDao.insert(commentsVo);
 }
コード例 #2
0
ファイル: ContentService.java プロジェクト: whatsToday/what
 public void delete(long comments_no) {
   commentsDao.delete(comments_no);
 }
コード例 #3
0
ファイル: ContentService.java プロジェクト: whatsToday/what
 public CommentsVo getComments(Model model) {
   List<CommentsVo> commentsList = commentsDao.selectAll();
   model.addAttribute("commentsList", commentsList);
   return null;
 }