[jboss-user] [JBoss Portal] - Portlet Cacheability Levels
dorothy
do-not-reply at jboss.com
Tue Jun 30 01:11:32 EDT 2009
Hi
Hi
I was testing the cacheability levels that are introducced in JSR 286 on JBoss 4.3 EAP. Below is the code:
protected void doView(RenderRequest request, RenderResponse response)
| throws PortletException, IOException, UnavailableException {
| PrintWriter pw = response.getWriter();
| ResourceURL rurl = response.createResourceURL();
|
| rurl.setCacheability("PORTLET");
| rurl.setParameter("name", "abc");
| pw.println("<BR><A HREF=\"" + rurl.toString() + "\">Serve Resource</A><BR>");
| pw.close();
| }
|
| public void serveResource(ResourceRequest request, ResourceResponse response)
| throws PortletException, IOException {
| PrintWriter pw = response.getWriter();
| pw.println("<BR>Inside Serve Resource<BR>");
| pw.println("<BR>Param Value = " + request.getParameter("name"));
| pw.println("<BR>Cacheability = " + request.getCacheability());
| pw.println("<BR>PortletMode = " + request.getPortletMode());
| pw.println("<BR>Window State = " + request.getWindowState());
| pw.close();
| }
JBoss automatically resets the cacheability to default i.e. 'PAGE'. No matter if I set 'FULL' or 'PORLET' it just does not take effect. Is this some kind of a bug or am I missing anything?
Thanks
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4240902#4240902
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4240902
More information about the jboss-user
mailing list