-
[Restful 학습] - PathVariableSPRING/WEBSERVICE 2020. 8. 1. 13:18
아래와 같이 PathVariable로 변수를 받을 시에는 URL PATH에 따라 값을 설정할 수 있다.
@GetMapping(path = "/hello-world-bean/path-variable/{name}") public HelloWorldBean helloWolrdBean(@PathVariable String name) { return new HelloWorldBean(String.format("Hello World %s", name)); }
'SPRING > WEBSERVICE' 카테고리의 다른 글
[Restuful 학습] - PostMapping 설명 및 예제 (0) 2020.08.03 [Restuful 학습] - GetMapping 설명 및 예제 (0) 2020.08.01 [RestFul 학습] - EXCEPTION관리 (0) 2020.05.28 [Resutful 학습] - 기본적인 Rest 구현 (0) 2020.05.18 SOAP과 REST 비교 (0) 2020.05.17