1 / 23

JSP

JSP. Expression Language (EL). 4-Jan-20. JSP - Expression Language (EL). Introduction Expression Language was first introduced in JSTL 1.0 (JSP Standard Tag Library ). Before the introduction of JSTL, scriptlets were used to manipulate application data.

ipeter
Download Presentation

JSP

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. JSP Expression Language (EL) 4-Jan-20

  2. JSP - Expression Language (EL) Introduction • Expression Language was first introduced in JSTL 1.0 (JSP Standard Tag Library ). • Before the introduction of JSTL, scriptlets were used to manipulate application data. • JSTL introduced the concept of an expression language (EL) which simplified the page development by providing standard tag libraries. • These tag libraries provide support for common, structural tasks, such as: iteration and conditionals, processing XML documents, internationalization and database access using the Structured Query Language (SQL). The Expression Language introduced in JSTL 1.0 is now incorporated in JavaServer Pages specification(JSP 2.0). This presentation gives some idea about what is Expression Language and how to simplify the maintenance for JSP applications by avoiding scripting elements.

  3. JSP - Expression Language (EL) • A primary feature of JSP technology version 2.0 is its support for an expression language (EL). • An expression language makes it possible to easily access application data stored in JavaBeans components. For example, the JSP expression language allows a page author to access a bean using simple syntax such as ${name} for a simple variable or ${name.foo.bar} for a nested property. • JSP EL allows you to create expressions both (a) arithmetic and (b) logical. Within a JSP EL expression, you can use integers, floating point numbers, strings, the built-in constants true and false for boolean values, and null.

  4. Simple Syntax: Typically, when you specify an attribute value in a JSP tag, you simply use a string. For example: JSP EL allows you to specify an expression for any of these attribute values. A simple syntax for JSP EL is as follows: Here expr specifies the expression itself. The most common operators in JSP EL are . and [ ]. These two operators allow you to access various attributes of Java Beans and built-in JSP objects. For example above syntax <jsp:setProperty> tag can be written with an expression like: When the JSP compiler sees the ${} form in an attribute, it generates code to evaluate the expression and substitues the value of expresson.

  5. Simple Syntax: You can also use JSP EL expressions within template text for a tag. For example, the <jsp:text> tag simply inserts its content within the body of a JSP. The following <jsp:text> declaration inserts <h1>Hello JSP!</h1> into the JSP output: You can include a JSP EL expression in the body of a <jsp:text> tag (or any other tag) with the same ${} syntax you use for attributes. For example: EL expressions can use parentheses to group sub expressions. For example, ${(1 + 2) * 3} equals 9, but ${1 + (2 * 3)} equals 7.

  6. The test attribute of the following conditional tag is supplied with an EL expression that compares the number of items in the session-scoped bean named cart with 0: <c:if test="${sessionScope.cart.numberOfItems > 0}">   ... </c:if> The JSP expression evaluator is responsible for handling EL expressions, which are enclosed by the ${ } characters and can include literals. Here's an example: <c:if test="${bean1.a < 3}" >   ... </c:if> Any value that does not begin with ${ is treated as a literal and is parsed to the expected type using the PropertyEditor for the type: <c:if test="true" > ... </c:if> Literal values that contain the ${ characters must be escaped as follows: <mytags:example attr1="an expression is ${'${'}true}" />

  7. Deactivating Expression Evaluation Because the pattern that identifies EL expressions--${ }--was not reserved in the JSP specifications before JSP 2.0, there may be applications where such a pattern is intended to pass through verbatim. To prevent the pattern from being evaluated, you can deactivate EL evaluation. To deactivate the evaluation of EL expressions, you specify the isELIgnored attribute of the page directive: <%@ page isELIgnored ="true|false" %> The valid values of this attribute are true and false. If it is true, EL expressions are ignored when they appear in static text or tag attributes. If it is false, EL expressions are evaluated by the container. The default value varies depending on the version of the web application deployment descriptor. The default mode for JSP pages delivered using a Servlet 2.3 or earlier descriptor is to ignore EL expressions; this provides backward compatibility. The default mode for JSP pages delivered with a Servlet 2.4 descriptor is to evaluate EL expressions; this automatically provides the default that most applications want.

  8. Basic Operators in EL: JSP Expression Language (EL) supports most of the arithmetic and logical operators supported by Java. Below is the list of most frequently used operators:

  9. Arithmetic operators Few more examples on arithmetic operations. EL ExpressionResult ${10.2 + 20.3} O/P: 30.5 ${-40 - 20} O/P: -60 ${20 * 2} O/P: 40 ${3/4} O/P: 0.75 ${3 div 4} O/P: 0.75 ${10/0} O/P: Infinity ${50%8} O/P: 2 ${50 mod 8} O/P: 2 ${(10==20) ? "true" : "false"} O/P: false

  10. comparison operators

  11. Functions in JSP EL JSP EL allows you to use functions in expressions as well. These functions must be defined in custom tag libraries. A function usage has the following syntax: Where ns is the namespace of the function, func is the name of the function and param1 is the first parameter value. For example, the function fn:length, which is part of the JSTL library can be used as follows to get the length of a string. To use a function from any tag library (standard or custom), you must install that library on your server and must include the library in your JSP using <taglib> directive as explained in JSTL chapter. Defining Functions: The JSP expression language allows you to define a function that can be invoked in an expression. Functions are defined using the same mechanisms as custom tags.

  12. public class MyFunctions { public static String toCaps( String text ) { return text.toUpperCase(); } } Using Functions: XML: <uri>testFunctionsURI</uri> <function> <name>toCaps</name> <function-class>mypkg.MyFunctions</function-class> <function-signature>String toCaps( java.lang.String)</function-signature> </function> JSP: <%@ taglib prefix="myFunctionTest" uri="testFunctionsURI"%> ${myFunctionTest.toCaps("testingCaps")}

  13. JSP EL Implicit Objects: The JSP expression language supports the following implicit objects: You can use these objects in an expression as if they were variables.

  14. JSP EL Implicit Objects: Note: EL impilcit objects are not as same as the implicit objects available for JSP scripting except for pageContext. JSP and EL implicit objects have only one object in common (pageContext),and pageContext has properties for accessing all of the other eight JSP implicit objects. The first four maps represent the various attribute scopes which can be used to look up identifiers in specific scopes. The next four maps are for fetching the values of request parameters and headers.The cookie implicit object provides access to the cookies set by a request and the final EL implicit object, initParam, is a map storing the names and values of any context initialization parameters associated with the Web application. Lets look at few examples on how to use implicit objects.

  15. The pageContext Object: • The pageContext object gives you access to the pageContext JSP object. • Through the pageContext object, you can access the request object. • For example, to access the incoming query string for a request, you can use the expression: ${pageContext.request.queryString}

  16. The Scope Objects: • The pageScope, requestScope, sessionScope, and applicationScope variables provide access to variables stored at each scope level. • For example, If you need to explicitly access the box variable in the application scope, you can access it through the applicationScope variable as applicationScope.box.

  17. The param and paramValues Objects: • The param and paramValues objects give you access to the parameter values normally available through the request.getParameter and request.getParameterValues methods. • For example, to access a parameter named order, use the expression ${param.order} or ${param["order"]}. • Following is the example to access a request parameter named username:

  18. The param and paramValues Objects: The param object returns single string values, whereas the paramValues object returns string arrays.

  19. header and headerValues Objects: • The header and headerValues objects give you access to the header values normally available through the request.getHeader and request.getHeaders methods. • For example, to access a header named user-agent, use the expression ${header.user-agent} or ${header["user-agent"]}. • Following is the example to access a header parameter named user-agent:

  20. header and headerValues Objects: This would display something as follows:

  21. The header object returns single string values, whereas the headerValues object returns string arrays.

  22. Conclusion By using this expression language, page authors could drastically reduce the amount of scripting in their pages, resulting in greater productivity, easier maintenance, and a flatter learning curve in terms of page development. Over the years, the expression language has evolved to include more advanced functionality, while still maintaining its simplicity.

  23. THANK YOU…

More Related