jsp的el表达式

el:el表达式可以输出定义在域对象中的变量或者表达式

$()

  <%
        pageContext.setAttribute("name", "xiaoer");
        pageContext.setAttribute("name", "xiaoer2", PageContext.REQUEST_SCOPE);
        pageContext.setAttribute("person", new Person("xiaoer",20));
   %>
  
    ${name};
    ${requestScope.name}
    ${person.age}
  

你可能感兴趣的:(jsp的el表达式)