While writing a RESTful web service, I am encountering issues if I enable any sort of caching on my client (currently a .NET thick client). By default Jersey is not sending
I found one annotation which can disable caching. You can use following annotation for your API:
@CacheControl(noCache = true)
Ref: Jersey Annotation for cache control