The Expression Language (EL) simplifies the data accessibility from various type of application objects like Java Beans, request, session and application etc. There are many implicit objects, operators and reserve words in EL. It is the newly added feature in JSP technology version 2.0.
${expression}
${EL.Statement}
${attrName}
${attrName[index]}
${OneObject.MemeberObject.PropertyNameOfMemberObject}
${param.name}
${param.course}
${paramValues.course[0]}
${ paramValues.course[1]}
${header.host}
${header.referer}
${headrValues.accept-language[0]}
${headrValues.accept-language[1]}
ServletContext
obj${initParam.institute}
${initParam.website}
${pageContext.session.id}
${pageContext.session.length}
${pageContext.request.removeAddr}
${pageContext.request.method}
${pageContext.request.requestURL}
${pageContext.request.contentType}