Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oliver Drotbohm opened DATAREST-384 and commented
Assume you have a repository interface like this:
public interface CustomerRepository extends Repository<Customer, Long> { List<Customer> findByLastname(@Param("lastname") String lastname, Sort sort); }
then the Sort paramter is neither advertised
Sort
{ "_links" : { "findByLastname" : { "href" : "http://localhost:8080/customers/search/findByLastname{?lastname}", "templated" : true } } }
nor is it considered if you trigger a request to the URI:
http://localhost:8080/customers/search/findByLastname?sort=firstname,asc
Affects: 2.1.4 (Dijkstra SR4), 2.2 GA (Evans)
Backported to: 2.2.1 (Evans SR1)
The text was updated successfully, but these errors were encountered:
odrotbohm
No branches or pull requests
spring-projects-issues commentedSep 10, 2014
Oliver Drotbohm opened DATAREST-384 and commented
Assume you have a repository interface like this:
then the
Sort
paramter is neither advertisednor is it considered if you trigger a request to the URI:
Affects: 2.1.4 (Dijkstra SR4), 2.2 GA (Evans)
Backported to: 2.2.1 (Evans SR1)
The text was updated successfully, but these errors were encountered: