HAETAOS
-
[RESTFUL 학습] HAETAOSSPRING/WEBSERVICE 2020. 8. 23. 00:58
Hypermedia As The Engine Of Application state Client에 링크로 사용 가능한 URL을 리소스로 전달하여, Client가 해당 리크를 참고할 수 있도록 하는 REST-API 기술 주로 마이크로서비스를 기반으로 프로젝트를 개발할 때 쓰인다고한다. 참조문서:https://spring.io/guides/gs/rest-hateoas/ 아래와 같이 pom.xml에 hateoas dependency를 추가해야 hateoas를 사용할 수 있다. org.springframework.boot spring-boot-starter-hateoas @GetMapping("/users/{id}") public EntityModel retrieveUser(@PathVariable int id)..