Package br.com.caelum.vraptor.actioncache

Examples of br.com.caelum.vraptor.actioncache.Cached.key()


    actionCache.fetch(new CacheKey(cached, headers), new Callable<ActionCacheEntry>() {

      @Override
      public ActionCacheEntry call() throws Exception {
        String result = charResponse.getOutput();
        logger.debug("Caching response of controller method with key {}",cached.key());
        return new ActionCacheEntry(result, charResponse.getHeaders());
      }
    });
  }
View Full Code Here


      Cached cached = executed.getCached();
      CharArrayWriterResponse charArrayResponse = ProxyTargetInstance.get(response);
      ActionCacheEntry entry = actionCache.fetch(new CacheKey(cached,requestHeaders));
      HttpServletResponse originalResponse = charArrayResponse.delegate();
      entry.copyHeadersTo(originalResponse);
      logger.debug("Using cached response for {}",cached.key());
      originalResponse.getWriter().print(entry.getResult());
    } catch (IOException e) {
      throw new ResultException(e);
    }
  }
View Full Code Here

      Cached cached = executed.getCached();
      CharArrayWriterResponse charArrayResponse = ProxyTargetInstance.get(response);
      ActionCacheEntry entry = actionCache.fetch(new CacheKey(cached,requestHeaders));
      HttpServletResponse originalResponse = charArrayResponse.delegate();
      entry.copyHeadersTo(originalResponse);
      logger.debug("Using cached response for {}", cached.key());
      originalResponse.getWriter().write(entry.getResult());
      originalResponse.flushBuffer();
    } catch (IOException e) {
      throw new ResultException(e);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.