Spring Projects Issues
Spring Projects Issues
**[slangeberg](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER50741)** commented Seems that adding alias to match the web request params: ```java bindings.bind(parent.children.any().name).as("children.name") ``` gets the bindings picked up again in our project
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Work in progress at in the [wiki](https://github.com/SpringSource/spring-data-commons/wiki/Developer-guide)
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented That seems to be caused by using `String` as type of the version property. If you switch to something numeric (e.g. `Long`), your tests succeed. Is that...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Can you elaborate on what the use case is for this as this is mostly considered internal API. That said, what you're suggesting exactly works the other...
**[Ales Justin](https://jira.spring.io/secure/ViewProfile.jspa?name=alesj)** commented The problem is, if we go with fields, and not properties, PropertyPath ctor fails, as it cannot find matching property (since we pass-in a field). Converting property...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Okay, for one: things work as they work. We can't change very core abstractions of Spring Data or extend their responsibilities, just because one store has an...
**[Yoann Rodiere](https://jira.spring.io/secure/ViewProfile.jspa?name=fenrhil)** commented Hello, The thing is, translating property names will not work in our case for two reasons: 1. Fields may be generated from an entity as a whole,...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Such requirements are best implemented using manually declared queries. Be aware that the query derivation mechanism is a tool to get started quickly. It is **not** even...
**[Yoann Rodiere](https://jira.spring.io/secure/ViewProfile.jspa?name=fenrhil)** commented > Be aware that the query derivation mechanism is a tool to get started quickly. It is not even intended to satisfy advanced querying facilities. [...] Ok....
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented > Ok. I guess that rules out most full-text queries, unfortunately. > Care to elaborate why? > I'm curious, are we only talking about query code, or...