Package kr.or.javacafe.board.domain

Examples of kr.or.javacafe.board.domain.Comment



  @RequestMapping(value = "/comment/list/ATC_NO/{atcNo}", method = RequestMethod.GET)
  @ResponseBody
  public List<Comment> commentList(@PathVariable String atcNo) {
    Comment comment = new Comment();
    comment.setAtcNo(atcNo);

    return boardBO.listComent(comment);
  }
View Full Code Here


  }

  @RequestMapping(value = "/comment/add/ATC_NO/{atcNo}", method = RequestMethod.POST)
  @ResponseBody
  public String commentAdd(@PathVariable String atcNo, @RequestParam String cmtCont) {
    Comment comment = new Comment();
    comment.setAtcNo(atcNo);
    comment.setCmtCont(cmtCont);

    boardBO.addComment(comment);

    return "SUCCESS";
  }
View Full Code Here

  }

  @RequestMapping(value = "/comment/remove/ATC_NO/{atcNo}/CMT_SEQ/{cmtSeq}", method = RequestMethod.GET)
  @ResponseBody
  public String commentRemove(@PathVariable String atcNo, @PathVariable int cmtSeq) {
    Comment comment = new Comment();
    comment.setAtcNo(atcNo);
    comment.setCmtSeq(cmtSeq);

    boardBO.removeComment(comment);

    return "SUCCESS";
  }
View Full Code Here

TOP

Related Classes of kr.or.javacafe.board.domain.Comment

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.