시작이 반

[Spring] @RequestMapping- @PostMapping @GetMapping 본문

Programming/Spring

[Spring] @RequestMapping- @PostMapping @GetMapping

G_Gi 2021. 1. 25. 15:54
SMALL
@RequestMapping(value = "/test", method = { RequestMethod.POST })

@PostMapping("/test")

이런식으로 사용가능

GetMapping도 마찬가지

 

클래스 단에 사용하면

@RequestMapping(value = "/hello")
public class test{
	...
    
    @GetMapping("/Spring")
    public Stirng goToSpirng(Model model){
    	return "Spring";
    }
}

/hello/Spring

이런식인듯..

LIST