为什么我们需要在Spring HATEOAS中使用curies

时间:2017-04-03 02:32:05

标签: spring spring-hateoas

我基本了解Spring的HATEOAS是什么,以及那些基本的HETEOAS链接,例如:

 _links : {
     self: { href: "http://myhost/person/1" }
}

我尝试在线搜索,但我无法真正掌握HATEOAS中的curies。我无法理解它存在的必要性。为什么需要?

  curies: {
     name: "ex",
     href: "http://example.com/rels/{rel}",
     templated: true
},

1 个答案:

答案 0 :(得分:1)

CURIEs提供了一个快捷方式或模板,用于链接到基于HAL的API响应中的API文档。

https://www.mikestowe.com/blog/2015/01/what-the-heck-are-curies.php

了解详情