el表达式初步 ${}

  1. <%
    pageContext.setAttribute("username", "root24");
    request.setAttribute("username", "root");
    session.setAttribute("username", "root2");
    application.setAttribute("username", "root23");

%>

${ requestScope.username }

  1. 特殊的
    pageContext.setAttribute("hello-world", "123");
    
%>

${ requestScope.username }

${ pageScope['hello-world'] }
  1. 如果调用的是对象的属性 直接 user.name 就可以了

你可能感兴趣的:(el表达式初步 ${})