Goal RestController, RequestMapping, GetMapping, RequestParam의 기본 사용법을 숙지한다. Spring의 기본 구동 방식에 대해서 이해한다. package org.zerock.ex1.controller; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RequestMapping; import or..