JDBC+Servlet+JSP整合开发之29-JSP表达式语言(EL)

�CEL 简介
�CEL的应用场合
�CEL 的基本语法
�CEL中的算术运算符
�CEL中的关系运算符
�CEL中的逻辑运算符
------------------------------START-----------------------------------
? EL简介
�C是一种简单的表达式语言
�C能够访问变量、JavaBean的属性、集合和数组
�C能够进行关系、逻辑和算术运算
�C能够访问内建对象
? EL的应用场合
�C在标签的属性值中使用:
? <some:tag value=“${expr}” />
ELJSP.jsp
JDBC+Servlet+JSP整合开发之29-JSP表达式语言(EL)_第1张图片
测试:
image
�C作为判断条件:
<c:if test=“${!empty param.username}”>

</c:if>
image
测试:
image
image
测试:
image
�C在JSP页面中直接使用:
? One value is ${bean1.a} and another is
${bean2.a.c}
image
测试:
image
看下在JAVABean中如何实现哈~
User.java
image
ELJSP.jsp
<%@ page language= "java" import= "java.util.*,com.michael.bean.*" pageEncoding= "gbk"%>    
<%@ taglib uri= "http://java.sun.com/jsp/jstl/core" prefix="c" %>    
<%    
String path = request.getContextPath();    
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";    
%>    

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">    
<html>    
    <head>    
        <base href="<%=basePath%>">    
        <title>My JSP 'ELJSP.jsp' starting page</title>    
        <meta http-equiv="pragma" content="no-cache">    
        <meta http-equiv="cache-control" content="no-cache">    
        <meta http-equiv="expires" content="0">        
        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">    
        <meta http-equiv="description" content="This is my page">    
        <!--    
        <link rel="stylesheet" type="text/css" href="styles.css">    
        -->    

    </head>    
    <body>    
        <%request.setAttribute("URL","http://redking.blog.51cto.com"); %>    
        <c:out value="${URL }"></c:out><br>    
        <hr>    
        URL:<input type="text" value="${URL }"><br>    
        <hr>    
        <%request.setAttribute("username","michael"); %>    
        <c:if test="${username=='admin'}">    
                <input type="button" value="delete"/>    
        </c:if>    
        <c:if test="${username!='admin'}">    
                <input type="button" value="delete" disabled="disabled"/>    
        </c:if>    
        <br><hr>    
        UserName:${username }<br>    
        <hr>    
        <%    
        User u = new User();    
        u.setId(1);    
        u.setName("珊珊");    
        request.setAttribute("u",u);    
         %>    
         ID:${u.id }<br/>    
         Name:${u.name }<br/>    
    </body>    
</html>
测试:
image
? EL 的基本语法
?访问变量

�C${变量名称}
?访问maps、lists、arrays ,使用“[]”
�CcustomerList[0]
image
测试:
image
?访问 JavaBean 的属性,使用“.”,并且可以嵌套
�Cuser.name.firstName
Customer.java
image
Name.java
image
ELJSP.jsp
image
测试:
image 
? EL中的算术运算符
�C "+"
�C "-"
�C "*"
�C "/"
�C "%"
? EL中的关系运算符
�C“== ” or “eq”
�C“!=“ or “ne”
�C“<“ or “lt”
�C“>” or “gt”
�C“<=“ or “le”
�C“>=“ or “ge”
? EL中的逻辑运算符
�C“&&” and “and”
�C“||” and “or”
�C“!” and “not”
image
  image
测试:
  image
------------------------------------END--------------------------------

你可能感兴趣的:(jsp,开发,servlet,jdbc,语言)