在dorado中默认提供的表达式有11个,这些表达式都是可以在开发中直接使用的。
EL变量对象 |
说明 |
Util |
dorado特别提供的工具类 |
|
例如:使用"${Util.date}"或"${Util.getDate()}"可以获得EL表达式被解释时的Server端时间。 |
resource |
国际化资源的管理对象 |
|
例如:可利用"${resource.getString("bundle1", "key1")}"来获得某国际化资源。 |
Resource |
用于简化国际化资源使用方式的对象 |
|
使用该对象只能用于获取系统当前使用的语种中的资源。 |
context |
Dorado上下文对象 |
|
可用于获取Dorado上下文对象中保存的各种属性值。 |
Context |
用于简化Dorado上下文对象使用方式的对象 |
|
使用该对象只能用于读取Context的Parameter或Attribute中对象。 |
request |
Http的request对象 |
|
例如:可利用"${request.getAttribute("key1")}"来获得存储在Request上下文中的对象。 |
Request |
用于简化request对象使用方式的对象 |
|
使用该对象只能用于读取request的Parameter或Attribute中对象。 |
session |
Http的Session对象 |
|
例如:可利用"${session.getAttribute("key1")}"来获得存储在Session上下文中的对象。 |
Session |
用于简化session对象使用方式的对象 |
|
使用该对象只能用于读取session的Attribute中对象。 |
application |
Http的ServletContext对象 |
|
例如:可利用"${application.getAttribute("key1")}"来获得存储在ServletContext上下文中的对象。 |
Application |
用于简化ServletContext对象使用方式的对象 |
|
使用该对象只能用于读取ServletContext的Attribute中对象。 |