SPRING/WEBSERVICE

[Restful 학습] - PathVariable

JUMP개발자 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));
	}