JavaWeb——EL 数据访问语言

2021/9/20 20:28:18

本文主要是介绍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/>

 



这篇关于JavaWeb——EL 数据访问语言的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程