编程语言
首页 > 编程语言> > JavaWeb——EL 数据访问语言

JavaWeb——EL 数据访问语言

作者:互联网

介绍

  EL表达式:数据访问语言,使用${} 进行定义

  作用1. 通过. 在特定域对象中直接获取属性

    2. 在特定对象中调用方法

 

属性

  el表达式的常用隐式对象

  1. pageContext

  2. pageScope

  3. requestScope

  4. sessionScope

  5. applicationScope

  6. cookie

 

使用

<%--  通过.从特定域对象访问属性  --%>
request.username: ${ requestScope.username } <br/>
request.password: ${ requestScope.password} <br/>
<%-- 从特定对象调用方法 --%>
request.getContextPath() ${ pageContext.request.getContextPath() }<br/>
request.getAttribute() ${ pageContext.request.getAttribute("username")} <br/>

 

标签:username,EL,JavaWeb,getAttribute,requestScope,request,访问,pageContext
来源: https://www.cnblogs.com/remix777/p/15314971.html