Spring MVC
-
Spring MVC and Request Life CycleFramework/SPRING 2020. 2. 3. 13:29
1. Overview 1.1 Spring MVC Spring MVC is a web application framework that implements the Model View Controller pattern. It allows to implement controller classes equipped with mapping annotations to map HTTP requests into method invocations and bind request parameters and payloads to method arguments. @RestController // 1 class MyController { @GetMapping("/hello") // 2 String sayHelloTo(@Request..