当前位置

网站首页> 程序设计 > 开源项目 > Web应用开发 > 浏览文章

Spring HATEOAS

作者:小梦 来源: 网络 时间: 2024-02-27 阅读:

Spring HATEOAS 是一个用于支持实现超文本驱动的 REST Web 服务的开发库。是 HATEOAS 的实现。

示例代码:

@Controller@RequestMapping("/people")class PersonController {  @RequestMapping(method = RequestMethod.GET)  public HttpEntity<PersonResource> showAll() { … }  @RequestMapping(value = "/{person}", method = RequestMethod.GET)  public HttpEntity<PersonResource> show(@PathVariable Long person) { … }}

相关阅读

热点阅读

网友最爱