标签: java spring spring-data-rest
我有一个使用此方法的spring-data-rest存储库:
long countByName(String name);
我应该使用什么URL从客户端访问此方法?
答案 0 :(得分:2)
首先,您必须添加@Param注释:
@Param
long countByUuid(@Param("uuid") String uuid);
然后您可以使用以下网址访问此方法:
/{repository}/search/countByUuid?uuid=test