참고 URL : https://docs.spring.io/spring/docs/5.0.7.RELEASE/spring-framework-reference/web.html#spring-web | 웹 MVC 컨트롤러 구현 import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class UserController { @GetMapping // @ResponseBody가 생략되어 있는 것이다. public String hello(){ // @RestController가 아닌 @Controller 어노테이션을 사..