j2ee: JSP Expression Language - capabilities [4/27] ![]() ![]() ![]() |
The JSP EL has the following capabilities:
jsp:useBean
,
you can access an object in any scope just using its name:
${beanName}
${beanName.property}
Lists, Maps
using shorthand notation as well: ${elements[5]}
${header["User-Agent"]}
${test ? option1 : option2}