Skip to content

Instantly share code, notes, and snippets.

@abhirockzz
Created February 20, 2015 09:24
Embed
What would you like to do?
@Path("/testcache")
public class RESTfulResource {
@Inject
@CachControlConfig(maxAge = 20)
CacheControl cc;
@GET
@Produces("text/plain")
public Response find() {
return Response.ok(UUID.randomUUID().toString()).cacheControl(cc).build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment