Spring 4.3부터 추가된 어노테이션 5개




@PostMapping
@GetMapping
@PutMapping
@DeleteMapping
@PatchMapping






// 아래소스를
@RequestMapping(value ="/getBoardList", method = { RequestMethod.GET})
 
// 요렇게 줄일수 있다.
@GetMapping("/getBoardList")


+ Recent posts