PostFilter « Core « Spring Q&A





1. @PostFilter not working    forum.springsource.org

Somehow the @PostFilter is not being detected, could someone help me understand the reason why it might be happening? Its an example code of the book Spring Security 3 by Peter ...

2. @PostFilter    forum.springsource.org

@PostFilter Hi, I have a Problem using the @Pre and @Post Annotations. They work on any Object expect the Domain Objects. I use an custom PermissionEvaluator, because i dont wont to ...

3. @PostFilter performance    forum.springsource.org

Hello all, Is using @PostFilter performance-capable enough for large collections e.g. 10^7 total (pojo)elements and filtering out app. 90% per run? have a nice day Jack

4. Calling a method with @PostFilter inside a class is not working ?    forum.springsource.org

Hi, i have this object Code: @Service public class myBr { @PostFilter("filterObject.cellule.getId()==2") public List getB() { return super.getAll(); } public List getA() { return getB(); } When i call it from ...