1.EL的.或[]运输符
:默认是调用属性对应的get方法,底层原理为javaBean
eg:${customer.age}
实际调用的是customer中的getAge()方法
没查找范围默认依次从 pageScope requestScope sessionScope applicationScope 中找对应的属性
1.1输出放在session中的customer的age属性
${sessionScope.customer.age}
${sessionScope.customer["age"]}
1.2假如customer为com.atguigu包下的,则
正确写法:这样写会直接找com.atguigu.custome类中的age属性
${sessionScope.com.atguigu.customer["age"]}```
错误写法,因为下面这样写会先在会话中找com属性,但没有这个属性,则会传回null
${sessionScope.com.atguigu.customer.age}
2.EL中的隐含对象
2.1:与范围相关的
pageScope requestScope sessionScope applicationScope
2.2:与输入有关的
param paramValues
2.3:其他隐含变量pageContext,cookie,header,initParam
其中cookie,header,initParam只需了解
pageContext既PageContext属性,但只能读取属性,很常用,因为它可以获取除自身
外其他jsp八个隐含对象
易错点
1.下面这样写代表
调用通过setAttribute(String var1, Object var2)方法放在session里面的属性attributeNames
${sessionScope.attributeNames}
2.这样写代表调用session里面的getAttributeNames()方法
${pageContext.session.attributeNames}
3.EL的运输符
注:本博客为转载文章,若有侵权,请及时联系我删除qq:2694200519