@GetMapping
HTTP GET 요청을 처리
@RequestMapping(Method=RequestMethod.GET)와 같다.
@Controller
public class HomeController {
@GetMapping("/")
public String home() {
return "home";
}
}
/ URL 경로에 대한 GET 요청을 처리
https://standout.tistory.com/478
https://standout.tistory.com/481
'JAVA > Spring' 카테고리의 다른 글
Annotation - @Service (0) | 2023.04.19 |
---|---|
Annotation - @PostMapping (0) | 2023.04.19 |
Annotation - @RequestMapping (0) | 2023.04.19 |
Annotation - @Controller (0) | 2023.04.19 |
Annotation - @Autowired @Qualifier (0) | 2023.04.19 |