I have a controller which cannot have any cached responses. Rather than paste cache false all over my methods and rely on injected methods, I would love to be able to specify @NoCaching or @nocache on my controller and or controller methods, much like how the spring security plugin works.
I'm not sure how viable annotations would be for the more complex caching rules, but for NoCache, it seems like an easy solution.
I have a controller which cannot have any cached responses. Rather than paste
cache falseall over my methods and rely on injected methods, I would love to be able to specify @NoCaching or @nocache on my controller and or controller methods, much like how the spring security plugin works.I'm not sure how viable annotations would be for the more complex caching rules, but for NoCache, it seems like an easy solution.