[Spring MVC] 요청 매개변수 ( @RequestParam)
post 방식으로 form으로 데이터를 전달하거나 URL 쿼리문에 파라미터로 던진것들은 @RequestParam을 통해 받을수 있습니다. package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.w..