Spring Projects Issues
Spring Projects Issues
**[Herman Meerlo](https://jira.spring.io/secure/ViewProfile.jspa?name=hmeerlo)** commented Ok, exactly the same problem for me. It is rather annoying because I can not use the workaround because that would mean a breaking API change for...
**[Marc Zampetti](https://jira.spring.io/secure/ViewProfile.jspa?name=mzampetti)** commented I would like to raise the priority of this issue. While I understand the behavior we are all seeing was due to a bug and that it...
**[Michael Igler](https://jira.spring.io/secure/ViewProfile.jspa?name=igler)** commented Have raised the priority as I am not alone with this issue
**[Rikard Oxenstrand](https://jira.spring.io/secure/[email protected])** commented Just ran into this again when upgrading an old release. I think it is related to:[DATAREST-502](https://jira.spring.io/browse/DATAREST-502). What I don't understand is why there is a check for...
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...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Can we step back a bit and clarify what the actual problem is that we're trying to solve? The proposed PR simply turns a test case from...
**[ft0907](https://jira.spring.io/secure/ViewProfile.jspa?name=ft0907)** commented As shown in the code below, when I use the custom `@CustomizeQuerydslPredicate`, my custom annotation method will not be executed, because the supportsParameter method in the `@QuerydslPredicateArgumentResolver` class...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented I agree that this is unfortunate and we should find a fix for the problem. However, your proposed change would break all implementations that previously just used...
**[ft0907](https://jira.spring.io/secure/ViewProfile.jspa?name=ft0907)** commented Thank you very much for your reply, because the existing QuerydslPredicateArgumentResolver cannot achieve the function I need 1.We need QuerydslPredicateArgumentResolver to return a parsed parameter directly, preferably map,...
**[Joseph Valerio](https://jira.spring.io/secure/ViewProfile.jspa?name=jvalerio)** commented I think you need something like this: ```java if (!mappedProperties.isWritableProperty(fieldName)) { if(!isPropertyJsonWritable(target, fieldName)) i.remove(); continue; } ... private boolean isPropertyJsonWritable(Object bean, String fieldName) { BeanWrapper wrapper =...