Monday, 24 February 2014

How to prevent page from Dyna caching 


Not caching the fragment of page:
     <%@ page import="com.ibm.websphere.servlet.cache.*" %>
            <%                     
              ((ServletCacheResponse)response).setDoNotConsume(true);
            %>
 

Not caching the full page:
 

<%

         CommandContext commandContext = (CommandContext)request. getAttribute("CommandContext");

 HttpControllerRequestObject controllerReq = (HttpControllerRequestObject)commandContext.getRequest();
                 HttpServletRequest req = controllerReq.getHttpRequest();
                 JSPHelper.setUncacheable(req,true);
%>

 

No comments:

Post a Comment