Spring Projects Issues

Results 1569 comments of Spring Projects Issues

**[Ian Duffy](https://jira.spring.io/secure/ViewProfile.jspa?name=imduffy15)** commented Any ETA on this?

**[Pedro Vilaça](https://jira.spring.io/secure/ViewProfile.jspa?name=pvilaca)** commented As this issue isn't in-progress yet, do you suggest anything as a workaround to add a filter to the queries for entities that has a specific annotation?...

**[Brian Susko](https://jira.spring.io/secure/ViewProfile.jspa?name=websusk)** commented I'd also be interested in any recommendations on this until such case this is implemented. It seems there should be a lower-level API we can tie into...

**[Raghavendra Chary B](https://jira.spring.io/secure/ViewProfile.jspa?name=charybr)** commented Currently we are using below as a workaround: https://github.com/charybr/spring-data-rest-acl. Where we use CrudRepository so that Spring security ACL PostFilter can be applied: ``` @RepositoryRestResource(path = "book")...

**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented We'll be looking into this for the Gosling release train again. The biggest reason we haven't really gotten much farther is that we'd like to get more...

**[Jordi Llach Fernandez](https://jira.spring.io/secure/ViewProfile.jspa?name=jllachf)** commented After reviewing the changes done in sprin-data-commons and spring-data-jpa here are my thoughts. As far as I've seen `QueryAugmentor`'s business logic is meant to be "ruled"...

**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented That's very useful, thanks. Indeed annotations will definitely play an important role in augmentation as they're a nice tool to declaratively define expected augmenting behavior. That said,...

**[Jordi Llach Fernandez](https://jira.spring.io/secure/ViewProfile.jspa?name=jllachf)** commented Actually I was planning to use `AnnotationBasedQueryAugmentor` as a foundation class, but by looking at the implementation done in `augmentQuery(...)` and `augmentUpdate(...)` I think that these...

**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Just to make sure, we're on the same page here: `AnnotationBasedQueryAugmentor` considers **repository** annotations on both the type level as well as on methods. So the annotation...

**[Jordi Llach Fernandez](https://jira.spring.io/secure/ViewProfile.jspa?name=jllachf)** commented My last comment about "(unnecesary?) extra checks" just tries to point out that IF `supports(...)` method is called BEFORE (as you described yesterday) any `augmentXXX(...)` method,...