Wed 12 Apr 2006
JSP 2.0: Expression Language (talk by Marty Hall)
Posted by boz under ComputingComments Off on JSP 2.0: Expression Language (talk by Marty Hall)
The monthly Columbia (Maryland) BEA user group meeting was tonight, and Marty Hall (coreservlets.com) gave a very engaging and interesting talk about the new JSP 2.0 (Servlet 2.4) expression language. Now you can replace the verbose:
<jsp:useBean id="someName"
type="somePackage.someClass"
scope="request, session, or application" />
<jsp:getProperty name="someName"
property="someProperty" />
with:
${someName.spmeProperty}
-That’s the best reason for JSP 2.0 Expression Language. You’ll need an app server that supports the servlet 2.4 spec (i.e. Weblogic 9)…
I recorded Marty’s lecture, and have a link there to the materials from his website.