我正在使用Spring Boot 中的PagingAndSortingRepository。
是否可以从 http 正文(json)接收参数,而不是通过查询参数(@Param)接收它们。
例子:
@RepositoryRestResource(collectionResourceRel = "people", path = "people")
public interface PersonRepository extends PagingAndSortingRepository<Person, Long> {
List<Person> findByLastName(@Param("name") String name);
Person findByUsername(@Param("username") String username);
}
我正在寻找一种替代方法,@Param("name") String name
以便从 JSON-Body 而不是查询参数中提取值。