Spring Projects Issues
Spring Projects Issues
**[benkuly](https://jira.spring.io/secure/ViewProfile.jspa?name=benkuly)** commented Is there any non-static solution? Using projections is the hardcoded way, but I need an dynamic/programmatically way, so e.g. I can flexible determine for every entity and on...
**[Jason Hitt](https://jira.spring.io/secure/ViewProfile.jspa?name=jhitt25)** commented There is a further problem with the ResourceProcessor approach. The HAL links are completely unaffected by projections, or by any filtering you do in the ResourceProcessor. For...
**[Dario Seidl](https://jira.spring.io/secure/ViewProfile.jspa?name=darioseidl)** commented Has there been some new development in this regard, or has somebody found a good solution? I'm still wondering how to handle the case where an entity...
**[Dario Seidl](https://jira.spring.io/secure/ViewProfile.jspa?name=darioseidl)** commented FWIW, to restrict changing an attribute, I ended up using a `@HandleBeforeSave` repository event handler that checks whether the restricted attribute was changed (this requires a workaround...
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be...
**[Christopher Blewett](https://jira.spring.io/secure/ViewProfile.jspa?name=JIRAUSER49848)** commented I've started working on this
**[Mark Paluch](https://jira.spring.io/secure/ViewProfile.jspa?name=mp911de)** commented Thanks for letting us know. Happy to review a pull request
**[stevenwanuk](https://jira.spring.io/secure/ViewProfile.jspa?name=stevenwanuk)** commented experienced same issue after upgraded from spring boot 1.x (1.13.8.release of spring-data-common) to spring-boot 2 (2.1.9.release spring-data-common) the following codes register a binding with path **tity.childrenEntities)** ```java bindings.bind(parentEntity.childrenEntities.any.childProperty).first(....)...
**[stevenwanuk](https://jira.spring.io/secure/ViewProfile.jspa?name=stevenwanuk)** commented It looks like a small fix, right? [Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)
**[stevenwanuk](https://jira.spring.io/secure/ViewProfile.jspa?name=stevenwanuk)** commented this bug / issue breaks our exising bindings. couldn't find a proper fix for it without using relfection. however, a hacky fix is: ```java @SuppressWarnings("unchecked") @Override public void...