<% 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 %>

Calling methods

OGNL follows Java's syntax to execute a method.

To execute the getTitle() method on the book object type:

book.getTitle()

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


[More details]