如何使用Spring HATEOAS添加查询字符串参数?

时间:2014-03-24 16:16:33

标签: java spring spring-hateoas

我正在尝试生成搜索资源的链接。所以,我想创建一个提供我的搜索链接的资源:

POST /resourcesearch
{param1: "value1",param2:"value2"}

回应应该是:

{"links":[
  {
    "rel":"self",
    "href":"http://localhost:8080/resourcesearch"
  },
  {
    "rel":"resources",
    "href":"http://localhost:8080/resources?param1=value1&param2=value2"
  }
}

这是我的代码:

@Controller
@RequestMapping("/resourcesearch")
public class ResourceSearchController{
  @RequestMapping(method = RequestMethod.POST) 
  public ResponseEntity<ResourceSupport> createResourceSearch(@RequestBody ResourceDTO dto){
    ResourceSupport resource = new ResourceSupport();
    //... do something here to build query string based on "dto"
    resource.add(linkTo(ResourceController.class).withRel("resources"));
    return new ResponseEntity<ResourceSupport>(resource, HttpStatus.CREATED);
  }
}
===========================================
@Controller
@RequestMapping("/resources")
public class ResourceController{
  @RequestMapping(method = RequestMethod.GET)
  public ResponseEntity<CollectionDTO> listResources(@RequestParam("param1") String param1, @RequestParam("param2") String param2){
    ...
  }
}

问题是我无法弄清楚如何将查询字符串参数添加到行中的网址:

resource.add(linkTo(ResourceController.class).withRel("resources"));

因为该行的结果是:

{
  "links" : [
    {
      "rel":"resources",
      "href":"http://localhost:8080/resources"
    }
  ]
}

有什么想法吗?

1 个答案:

答案 0 :(得分:4)

您在资源和所需输出中使用的名称之间存在一些(潜在的)不匹配,因此我无法很好地映射。

无论如何,您需要使用methodOn的{​​{1}}。 Here's一个很好的例子可以让你前进。

对于更复杂的示例,Spring HATEOAS的unit tests是一个很好的示例来源。