OGNL是通常要結合Struts 2的标志一起使用,如<s:property value="xx" /> 等。大家經常遇到的問題是#、%和$這三個符号的使用。
“#”主要有三種用途:
- 通路OGNL上下文和Action上下文,#相當于ActionContext.getContext();下表有幾個ActionContext中有用的屬性:
名稱 作用 例子 parameters 包含目前HTTP請求參數的Map #parameters.id[0]作用相當于request.getParameter("id") request 包含目前HttpServletRequest的屬性(attribute)的Map #request.userName相當于request.getAttribute("userName") session 包含目前HttpSession的屬性(attribute)的Map #session.userName相當于session.getAttribute("userName") application 包含目前應用的ServletContext的屬性(attribute)的Map #application.userName相當于application.getAttribute("userName") attr 用于按request > session > application順序通路其屬性(attribute) #attr.userName相當于按順序在以上三個範圍(scope)内讀取userName屬性,直到找到為止 - 用于過濾和投影(projecting)集合,如books.{?#this.price<100} ;
- 構造Map,如#{'foo1':'bar1', 'foo2':'bar2'} 。
“%”符号的用途是在标志的屬性為字元串類型時,計算OGNL表達式的值。例如在Ognl.jsp中加入以下代碼:
< hr />
< h3 > %的用途 </ h3 >
< p >< s:url value ="#foobar['foo1']" /></ p >
< p >< s:url value ="%{#foobar['foo1']}" /></ p >
“$”有兩個主要的用途
- 用于在國際化資源檔案中,引用OGNL表達式,例子請參考《在Struts 2.0中國際化(i18n)您的應用程式 》
-
在Struts 2配置檔案中,引用OGNL表達式,如 < action name ="AddPhoto" class ="addPhoto" >
< interceptor-ref name ="fileUploadStack" />
< result type ="redirect" > ListPhotos.action?albumId=${albumId} </ result >
</ action >