String
1 2 3 4 5 | @RequestMapping("delete.do") public String delete(int bno) throws Exception { boardService.delete(bno); //삭제 처리 return "redirect:/board/list.do"; //목록으로 이동 } | cs |
List
1 2 3 4 5 | //댓글 목록을 ArrayList로 리턴 @RequestMapping("list_json.do") public List<ReplyDTO> list_json(int bno){ return replyService.list(bno); } | cs |
void
1 2 3 4 5 6 7 8 9 | @RequestMapping("insert.do") //세부적인 url pattern public void insert(ReplyDTO dto, HttpSession session) { //댓글 작성자 아이디 String userid=(String)session.getAttribute("userid"); dto.setReplyer(userid); //댓글이 테이블에 저장됨 replyService.create(dto); //jsp 페이지로 가거나 데이터를 리턴하지 않음 } | cs |
모델 오브젝트
1 2 3 4 | @RequestMapping("view") public User view(@RequestParam int bno) throws Exception { return userService.getUser(id); //목록으로 이동 } | cs |
View
@ResponseBody
1 2 3 4 5 | @RequestMapping("/hello") @ResponseBody public String hello() { return "<html><body>Hello Spring</body></html>"; } | cs |
'Certification > Spring(2V0-72.22, SCP)' 카테고리의 다른 글
Spring MVC - 게시판 페이징 처리 (0) | 2018.10.26 |
---|---|
iBatis Mapper Null 값 치환하기 (0) | 2018.10.25 |
View에 데이터 전송을 위한 Model 개념 (0) | 2018.10.03 |
Spring MVC - 게시판 만들기CRU(D) - feat.입문편 (0) | 2018.08.21 |
Spring MVC - 게시판 만들기CR(U)D - feat.입문편 (0) | 2018.08.21 |