<% request.setAttribute("decorator", "none"); response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 response.setHeader("Pragma","no-cache"); //HTTP 1.0 response.setDateHeader ("Expires", 0); //prevents caching at the proxy server %>

Accessing nested properties

To access nested properties, use the dot "." operator to concatenate the property names. The action class has a book field, with title and author fields.

To access the name of the book type:

book.title

on the OGNL console and hit enter. Do it for me


[More details]