Spring HATEOAS에서 "_embedded" 속성을 삭제하는 방법 REST API를 구축하기 위해 Spring Boot과 HATEOAS를 사용하고 있으며, API가 컬렉션을 반환하면 다음과 같이 "_embedded" 속성에 래핑됩니다. { "_links":{ "self":{ "href":"http://localhost:8080/technologies" } }, "_embedded":{ "technologies":[ { "id":1, "description":"A", "_links":{ "self":{ "href":"http://localhost:8080/technologies/1" } } }, { "id":2, "description":"B", "_links":{ "self":{ "href":"h..