在Spring Data Rest存储库中为自定义方法生成了什么URL?

时间:2016-03-17 12:53:31

标签: java spring spring-data-rest

我有一个使用此方法的spring-data-rest存储库:

long countByName(String name);

我应该使用什么URL从客户端访问此方法?

1 个答案:

答案 0 :(得分:2)

首先,您必须添加@Param注释:

long countByUuid(@Param("uuid") String uuid);

然后您可以使用以下网址访问此方法:

/{repository}/search/countByUuid?uuid=test