반응형 @ModelAttribute1 [Spring] Java - @RequestParam , @PathVariable , @ModelAttribute 차이 및 사용 @RequestParam 일반적으로 @RequestMapping 에서 Get 메서드 또는 @GetMapping 에서 사용하며 @PostMapping 에서도 @RequestParam을 사용할 때는 Form 태그 메서드가 Post 면 가능하다 // html // Controller @GetMapping("/board/read") public String boardRead(@RequestParam("num") Integer num , Model model) throws Exception{ // http://localhost:9090/board/read?num=143 board/read(num=${vo.b_num}) 으로 했을때 ?num=143 가 붙어서 주소로 이동하였다 예 ) http://localhost:.. 2023. 4. 22. 이전 1 다음 반응형