[Spring Boot] Get 메소드 사용법 (@RequestMapping, @GetMapping, 멀티 파라미터, JSON 리턴) @RequestMapping import org.springframework.web.bind.annotation.*; @RestController // controller임을 알려주는 표시 @RequestMapping("/api") // 이곳으로 들어오는 API주소를 mapping, /api주소로 받겠다(localhost:8080/api) public class GetController { // method는 GET타입으로 받고, path는 localhost:8080/api/getMethod @RequestMapping(method = RequestMethod.GET, p..