Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8746311
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:10:27+00:00 2026-06-13T12:10:27+00:00

Is it somehow possible to define cache control level for each resource? Is there

  • 0

Is it somehow possible to define cache control level for each resource?

Is there some annotation i could put on top of each Resource class so to specify cache control in a custom way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T12:10:28+00:00Added an answer on June 13, 2026 at 12:10 pm

    To solve this issue I ended up defining an @Cache aspect. There are a couple of caveats that I ran into:

    • The cached method needs to return a Response object (not POJOs) so that the aspect can modify the headers.

    • If you want to use ETags then the class containing the method (or the method arguments themselves) needs to expose the @Request so that the aspect can inspect the incoming tag.

    • Make sure that your method arguments combined with your method name will in fact create unique keys. Another catch here is response type. The client may issue two requests with identical parameters but different response types.

    • You could easily add options to the aspect to control max-age and other parameters on a per-method basis.

    Here’s my invoke method:

    @Override
    public Object invoke(MethodInvocation invocation) throws Throwable {
      if (Response.class != invocation.getMethod().getReturnType()) {
        logger.warning(String.format("%s is @Cachable but does not return a Response object", invocation.getMethod()));
        return invocation.proceed();
      }
    
      Optional<Request> request = getRequest(invocation);
      if (!request.isPresent()) {
        logger.warning(String.format("%s is @Cachable but does not declare a public Request field named \"request\"", invocation.getMethod()));
        return invocation.proceed();
      }
    
      Object response = super.invoke(invocation);
      EntityTag responseTag = JaxRsUtil.getEntityTag(response);
    
      Response.ResponseBuilder builder = request.get().evaluatePreconditions(responseTag);
      if (null != builder) {
        logger.finer("Found matching etag: " + responseTag);
        return builder.build();
      } 
      CacheControl cc = new CacheControl();
      cc.setMaxAge(maxAge);
      builder = Response.fromResponse((Response)response).tag(responseTag).cacheControl(cc);
      return builder.build();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If a class defined an annotation, is it somehow possible to force its subclass
Is it possible somehow to define a constant that says what datatype to use
I'm wondering is it possible somehow? sample code class CustomFilter { ... function FilterData($data,
Is it possible to define GUI element width as android:layout_width=wrap_content but somehow define minimal
Is it possible to declare a #define statement like this somehow? #define #Name# struct->name
Is it possible to somehow chain archetypes together by some super-archetype in Maven? For
Is it somehow possible to access a user's public key files (located in ~/.ssh
Is it somehow possible to create something like a masterpage (asp.net) in jQuery Mobile?
Is it somehow possible to use the 'With' keyword on an existing object? I
Is it somehow possible to identify unused variables in a PHP file in Emacs?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.