随笔-34  评论-1965  文章-0  trackbacks-0

本人是一个el(expression language,以下译为表达式语言)的支持者。因为我对<% %>写法极为反感,忘记了在那本书上看到的一句话——“使用标志(tag)的一个目的就是避免在jsp页面中出现过多的<%%>的语句,使页面与后台代码分离。”

表达式语言主要有以下几大好处:

  1. 避免(mytype) request.getattribute()mybean.getmyproperty()之类的语句,使页面更简洁;
  2. 支持运算符(如 -*/),比普通的标志具有更高的自由度和更强的功能;
  3. 简单明了地表达代码逻辑,使用代码更可读与便于维护。

struts 2中的表达式语言

struts 2支持以下几种表达式语言:

  1. ognl(object-graph navigation language),可以方便地操作对象属性的开源表达式语言;
  2. jstl(jsp standard tag library),jsp 2.0集成的标准的表达式语言;
  3. groovy,基于java平台的动态语言,它具有时下比较流行的动态语言(如python、ruby和smarttalk等)的一些起特性;
  4. velocity,严格来说不是表达式语言,它是一种基于java的模板匹配引擎,具说其性能要比jsp好。

struts 2默认的表达式语言是ognl,原因是它相对其它表达式语言具有下面几大优势:

  1. 支持对象方法调用,如xxx.dosomespecial()
  2. 支持类静态的方法调用和值访问,表达式的格式为@[类全名(包括包路径)]@[方法名 |  值名],例如:@java.lang.string@format('foo %s', 'bar')@tutorial.myconstant@app_name
  3. 支持赋值操作和表达式串联,如price=100, discount=0.8, calculateprice(),这个表达式会返回80;
  4. 访问ognl上下文(ognl context)和actioncontext;
  5. 操作集合对象。

ognl的用法

ognl是通常要结合struts 2的标志一起使用,如等。大家经常遇到的问题是#、%和$这三个符号的使用。下面我想通过例子讲述这个问题:

首先新建名为struts2_ognl的web工程,配置开发环境。之前很多朋友在使用struts 2的过程中都遇到乱码问题。当然乱码问题由来已久,而且涉及多方面的知识,所以并非三言两语可以说明白,而且互联网上也已经有很多这方便的文章,大家可以google一下。不过,如果你在开发的过程,多注意一下,避免乱码问题也不难。乱码多数是由于编码与解码所使用的方式不同造成的,所以我建议大家将编码方式都设为“utf-8”,如<%@  page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8" %>。另外,在配置web.xml时使用actioncontextcleanup过滤器(filter),如下面代码所示:

xml version="1.0" encoding="utf-8"?>
<web-app id="webapp_9" version="2.4"
    xmlns
="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi
="http://www.w3.org/2001/xmlschema-instance"
    xsi:schemalocation
="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

   
<display-name>struts 2 ognldisplay-name>
    
   
<filter>
       
<filter-name>struts-cleanupfilter-name>
       
<filter-class>
            org.apache.struts2.dispatcher.actioncontextcleanup
       
filter-class>
   
filter>
    
   
<filter-mapping>
       
<filter-name>struts-cleanupfilter-name>
       
<url-pattern>/*url-pattern>
   
filter-mapping>
    
   
<filter>
       
<filter-name>struts2filter-name>
       
<filter-class>
            org.apache.struts2.dispatcher.filterdispatcher
       
filter-class>
   
filter>

   
<filter-mapping>
       
<filter-name>struts2filter-name>
       
<url-pattern>/*url-pattern>
   
filter-mapping>

   
<welcome-file-list>
       
<welcome-file>index.htmlwelcome-file>
   
welcome-file-list>

web-app>
清单1 webcontent/web-inf/web.xml

“#”主要有三种用途:

  1. 访问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属性,直到找到为止
  2. 用于过滤和投影(projecting)集合,如books.{?#this.price<100}
  3. 构造map,如#{'foo1':'bar1', 'foo2':'bar2'}

下面让我们它们的具体写法,首先是action类代码:

package tutorial.action;

import java.util.linkedlist;
import java.util.list;
import java.util.map;

import javax.servlet.servletcontext;
import javax.servlet.http.httpservletrequest;

import org.apache.struts2.interceptor.servletrequestaware;
import org.apache.struts2.interceptor.sessionaware;
import org.apache.struts2.util.servletcontextaware;

import tutorial.model.book;

import com.opensymphony.xwork2.actionsupport;

publicclass ognlaction extends actionsupport implements servletrequestaware, sessionaware, servletcontextaware  {
   
privatestaticfinallong serialversionuid =1l;
   
   
private httpservletrequest request;
   
private map<string, string> session;
   
private servletcontext application;
   
private list<book> books;
           
   
publicvoid setservletrequest(httpservletrequest request) {
       
this.request = request;    
   }


   @suppresswarnings(
"unchecked")
   
publicvoid setsession(map session) {
       
this.session = session;        
   }


   
publicvoid setservletcontext(servletcontext application) {
       
this.application = application;
   }

   
   
public list<book> getbooks() {
       
return books;
   }


   @override
   
public string execute() {
       request.setattribute(
"username", "max from request");
       session.put(
"username", "max from session");
       application.setattribute(
"username", "max from application");
       
       books
=new linkedlist<book>();
       books.add(
new book("978-0735619678", "code complete, second edition", 32.99));
       books.add(
new book("978-0596007867", "the art of project management", 35.96));
       books.add(
new book("978-0201633610", "design patterns: elements of reusable object-oriented software", 43.19));
       books.add(
new book("978-0596527341", "information architecture for the world wide web: designing large-scale web sites", 25.19));
       books.add(
new book("978-0735605350", "software estimation: demystifying the black art", 25.19));
       
       
return success;
   }

}
清单2 src/tutorial/action/ognlaction.java

以上代码分别在request、session和application的范围内添加“username”属性,然后再在jsp页面使用ognl将其取回。我还创建了book对象的列表用于演示“用于过滤和投影(projecting)集合”的功能,至于book的代码大家可以在我前一文章《》看到。

下面是ognl.jsp的代码,内容如下:

<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>

doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
   
<title>struts ognl demotitle>
head>
<body>    
   
<h3>访问ognl上下文和action上下文h3>
   
<p>parameters: <s:property value="#parameters.username"/>p>
   
<p>request.username: <s:property value="#request.username"/>p>
   
<p>session.username: <s:property value="#session.username"/>p>
   
<p>application.username: <s:property value="#application.username"/>p>
   
<p>attr.username: <s:property value="#attr.username"/>p>
   
<hr />
   
<h3>用于过滤和投影(projecting)集合h3>
   
<p>books more than $35p>
   
<ul>
       
<s:iterator value="books.{?#this.price > 35}">
           
<li><s:property value="title"/> - $<s:property value="price"/>li>
       
s:iterator>
   
ul>
   
<p>the price of "code complete, second edition" is: <s:property value="books.{?#this.title=='code complete, second edition'}.{price}[0]"/>p>
   
<hr />
   
<h3>构造maph3>
   
<s:set name="foobar" value="#{'foo1':'bar1', 'foo2':'bar2'}"/>
   
<p>the value of key "foo1" is <s:property value="#foobar['foo1']"/>p>
body>
html>
清单3 webcontent/ognl.jsp

以上代码值得注意的是“”,因为“books.{?#this.title=='code complete, second edition'}.{price}”返回的值是集合类型,所以要用“[索引]”来访问其值。

最后是struts 2的配置文件struts.xml,内容如下:

xml version="1.0" encoding="utf-8"?>

doctype struts public
    "-//apache software foundation//dtd struts configuration 2.0//en"
    "http://struts.apache.org/dtds/struts-2.0.dtd"
>

<struts>
   
<constant name="struts.devmode" value="true"/>
   
<package name="struts2_ognl_demo" extends="struts-default">
       
<action name="ognl" class="tutorial.action.ognlaction">
           
<result>/ognl.jspresult>
       
action>        
   
package>
struts>
清单4 src/struts.xml

发布运行应用程序,结果如下所示:


清单5 示例运行结果1

“%”符号的用途是在标志的属性为字符串类型时,计算ognl表达式的值。例如在ognl.jsp中加入以下代码:

<hr />
   
<h3>%的用途h3>
   
<p><s:url value="#foobar['foo1']"/>p>
   
<p><s:url value="%{#foobar['foo1']}"/>p>
清单6 演示%用途的代码片段

刷新页面,结果如下所示:

清单7 示例运行结果2

“$”有两个主要的用途

  1. 用于在国际化资源文件中,引用ognl表达式,例子请参考《》
  2. 在struts 2配置文件中,引用ognl表达式,如
    <action name="addphoto" class="addphoto">
               
    <interceptor-ref name="fileuploadstack"/>            
               
    <result type="redirect">listphotos.action?albumid=${albumid}result>
           
    action>
    清单8 演示$用途的代码片段

总结

ognl是一种功能很大的表达式语言,熟悉它可以使我们的开发变得更快捷。

posted on 2007-04-28 19:43 max 阅读(66468) 评论(46)     所属分类: struts 2.0系列

评论:
# re: struts 2中的ognl 2007-04-28 23:01 |
为什么要叫struts的ognl,而不叫webwork的ognl?  回复  
  
# re: struts 2中的ognl 2007-04-29 10:33 |
抱怨一下标签的设计:ognl的使用是每个标签自己来负责的?!
在给datepicker用了ognl出现问题,一路追下来的发现。拿value的部分俨然没考虑这一点。

考虑一下如果要改要如何下手吧,想好了提给struts2的标签组 :)  回复  
  
# re: struts 2中的ognl 2007-04-30 10:02 |


怎么不管用呢?界面一片空白,我想动态添加
module/muser_main.jsp页面,该怎么办?
如何使用标签?  回复  
  
# re: struts 2中的ognl 2007-05-06 16:52 |
期待博主出书。  回复  
  
# re: struts 2中的ognl[未登录] 2007-05-08 09:29 |
看了楼主的struts2系列,真是受益匪浅,感谢楼主,期待更多更好的作品!~  回复  
  
# re: struts 2中的ognl[未登录] 2007-05-08 16:37 |
你好,我最近在把一个struts1.x的项目改造成一个struts2的项目,发现在在写入数据库的时候,写到数据库里面的都是些乱码,请问在struts2中怎么解决乱码问题呢。
email:java1982@126.com  回复  
  
# re: struts 2中的ognl 2007-05-08 23:15 | max
@javaman
正如我文中所说:
---------------------------------------------------------------
之前很多朋友在使用struts 2的过程中都遇到乱码问题。当然乱码问题由来已久,而且涉及多方面的知识,所以并非三言两语可以说明白,而且互联网上也已经有很多这方便的文章,大家可以google一下。不过,如果你在开发的过程,多注意一下,避免乱码问题也不难。乱码多数是由于编码与解码所使用的方式不同造成的,所以我建议大家将编码方式都设为“utf-8”,如<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8" %>。另外,在配置web.xml时使用actioncontextcleanup过滤器(filter),  回复  
  
# re: struts 2中的ognl 2007-07-04 14:50 |




你的页面结果是
#foobar['fool']?username=max from parameters
bar?username=max from parameters

但是,我没看到什么地方给parameters赋值了啊???  回复  
  
# re: struts 2中的ognl 2007-07-04 23:14 | max
@sasfy
“username=max from parameters”是我在例中用于请求“ognl.action”的参数如“?username=max from parameters”。
标签默认会将当前的请求参数加到生成的url中。
  回复  
  
# re: struts 2中的ognl[未登录] 2007-07-26 12:54 |
为什么我页面里提示这个syntax error in el啊
是不是要加什么包进来 啊
能我解决一下 先谢谢了哦  回复  
  
# re: struts 2中的ognl[未登录] 2007-07-30 10:28 |
我项目中使用了过滤和投影(projecting)集合


  • - $



我把‘35’这个定值改成一个从action得到的值(变化的)
象下面这样:


  • - $



但是这种写法得不到所要的结果集  回复  
  
# re: struts 2中的ognl 2007-07-31 23:56 | max
@steve
请尝试一下更改price的名字,如minprice,即books.{?#this.price >minprice}  回复  
  
# re: struts 2中的ognl[未登录] 2007-08-03 18:26 |
谢谢max的答复,可是我还没成功

///===》》这个是我从action 里得到的一个值


    ///===》》在这个过滤用时就取不到这个值了 我也想了很多法子 比如:换成#minprice,都不行

  • - $



//我实在没办法了就用了一个这样过滤的
我觉得这样有点麻烦,希望能得到更好更方便的方法
再次感谢你的回复  回复  
  
# re: struts 2中的ognl 2007-08-07 11:43 | max
@steve
你可以先定义一下ongl变量,再通过#xx引用这个变量,如:


  回复  
  
# re: struts 2中的ognl 2007-08-13 11:25 |
非常帅,谢谢~  回复  
  
# re: struts 2中的ognl 2007-08-13 15:09 |
博主幸苦了,虽然刚开始接触struts,但是你写的很清晰  回复  
  
# re: struts 2中的ognl 2007-08-31 09:34 |
max,你好。我有这么一个问题:
我在action中有个path的field,并有set,get方法。在jsp中我想根据path的值include相应的页面应该如何书写?
" /> 这样似乎不对。  回复  
  
# re: struts 2中的ognl 2007-09-06 16:09 |
您好,看了您的几篇文章觉的很不错,我们这里网落有问题总是掉线,很不方便,
您能吧这系列文章给我发一份吗?谢谢了
zhoudaqingidea@gmail.com
谢谢...  回复  
  
# re: struts 2中的ognl[未登录] 2007-10-15 14:34 |
请问为什么我用books.{price}[0]取不到值啊  回复  
  
# re: struts 2中的ognl 2007-11-06 22:08 |
想请问一下,


......


为什么使用 #action 不能获取想要的值,而只是"#action"。
改为 %{#action}" 还是不行,这是为什么?
应该使用怎样的ognl表达式才能获取到想要的值(createuser.action)?  回复  
  
# re: struts 2中的ognl 2007-11-13 10:06 |
helloworld.java运行的很好,为什么我又写了一个testhello就报这个错误,请搂主赐教
严重: could not find action or result
no result defined for action tutorial.testworld and result nihao - action - file:/e:/test3/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/struts2_helloworld/web-inf/classes/struts.xml:12:61
  回复  
  
# re: struts 2中的ognl 2007-11-13 10:07 |
难道一个包中只能写一个类吗????  回复  
  
# re: struts 2中的ognl 2007-11-14 08:44 |
真的谢谢你  回复  
  
# re: struts 2中的ognl 2008-03-11 15:23 |
不错 自己写的忘记用ioc实现aware

很好很强大
  回复  
  
# re: struts 2中的ognl 2008-03-20 10:04 |
写的太好了,我想把一部分贴到我的qq空间,不知道可以不?呵呵  回复  
  
# re: struts 2中的ognl 2008-03-21 00:44 |
max你好,谢谢你的讲解,现在有这样一个问题请问:
action里面有一个map已经传到页面,定义如下:
map bookcategorymap={"1":"计算机书籍","2":"文学书籍"}
在页面有一个book的list,在中遍历book,book有一个字段category存的是int,现在要显示跟bookcategorymap对应的字符串,如book.category为1则显示"计算机书籍",请问表达式应该怎样写? 在iterator里面总是取不到外面的map的值
谢谢!  回复  
  
# re: struts 2中的ognl 2008-03-22 10:55 |
max你好:
我怎么样才能在jsp页面得到action中的那个books列表?我把这个页面的代码复制到我的项目中,都没问题,就是在页面上得不到action中的数据,不论是request还是session 中的都不能得到,这个问题让我很困惑,是不是我那里没有配置对?
  回复  
  
# re: struts 2中的ognl 2008-03-22 11:31 |
我已经把上面的问题解决了!呵呵 谢谢max
  回复  
  
# re: struts 2中的ognl 2008-05-07 21:43 |
垃圾语法  回复  
  
# re: struts 2中的ognl 2008-06-04 00:45 |
books.{?#this.title=='code complete, second edition'}.{price}[0]
这样写让人很难理解.....
查阅了webwork和struts2的doc都没给出这种写法的解释....
books.{?#this.title=='code complete, second edition'}[0].price
这种写法似乎更容易理解,也更加符合规范.....

还望博主...解释下你所写的语句的意思.....

还有不推荐使用servletrequestaware, sessionaware, servletcontextaware,用actioncontext吧....要不然又走回struts的老路了..呵呵....不好意思....班门弄斧了....  回复  
  
# struts 2中的ognl 2008-08-07 00:18 |
博主您好!你讲得实在是太好了!
但是我还有一点不明白:就是标志的属性类型。我想知道的是标志的属性类型一般是什么呢???我想了很久都没弄明白,希望博主能帮一下忙!  回复  
  
# re: struts 2中的ognl 2008-08-13 14:54 |
users是一个对象,message也是一个对象,在message对象中有一个users类型的属性,我现在通过login这个action得到了一个users对象,在登录成功页上也能得到users对象中的属性值,但我想通过隐藏域把这个users对象传到另一个messageaction中得message对象得user属性,应该如何实现?  回复  
  
# re: struts 2中的ognl 2009-01-19 23:00 |
你好,我运行你的第一个例子的时候,总是对报错,我在jsp页面中把这一行删掉,就可以正常运行,这是什么原因啊?麻烦各位高手给我解答一下
  回复  
  
# re: struts 2中的ognl 2009-05-15 00:32 |
怎么看也没问题 写的好!!  回复  
  
# re: struts 2中的ognl 2009-05-15 11:37 |
ognl功能复杂,强大,所以不学  回复  
  
# re: struts 2中的ognl 2009-08-01 09:50 |
个人觉得ognl不够灵活,不能象el一样随意嵌入html标签里,而只能在struts2的标签里使用,不知道我说得对不对,反正我是不知道怎么不用struts2的标签而使用ognl表达式。如果能够用请指教。qq373100240。  回复  
  
# re: struts 2中的ognl 2009-09-23 16:38 |
最近在看楼主的文章。虽然以前就接触struts2了并且还用它做过项目。看了楼主的文章以后,感觉丰富了我以前的知识。有一些很好的解决方法,比如ognl用来过滤这个问题,以前我用的是比较笨拙的方法来解决的,并且我发现我们项目组都是那么解决的。
谢谢楼主。  回复  
  
# 关于#的疑问. 2010-02-15 22:18 |


为什么这两个的处理方法不一样呢? 难道有一个用的不是ognl?
但是为什么换了.那这个是ognl吗?
  回复  
  
# re: struts 2中的ognl 2010-04-28 17:20 |
@wan_jm


我也期待知道结果。郁闷了n久。  回复  
  
# re: struts 2中的ognl 2010-05-07 02:16 |
@zisehefeng

这个value默认是字符串%{}转为ognl表达式  回复  
  
# re: struts 2中的ognl 2010-07-07 14:37 |
@sasfy
这和%那部分的解释不相关吧,对于%而言楼主的看不太明白  回复  
  
# re: struts 2中的ognl 2010-07-08 21:48 | eric_jiang
@wd
其实跟javasvrip的 eval 差不多 将一个字符串转为表达式来取值  回复  
  
# re: struts 2中的ognl[未登录] 2010-09-04 16:10 |
瞎写什么呢?  回复  
  
# re: struts 2中的ognl 2011-09-01 10:58 |
@javaman
struts2里面有一个struts.i18n.encoding常量 配上

然后里面可能会有bug 不一定有用  回复  
  
# re: struts 2中的ognl 2012-07-13 21:05 |
在struts tags支持el的时候可以这样:

其中info是传递过来的一个bean,
现在不能这么用了 那该怎么改么?
请指教,谢谢  回复  
  
# re: struts 2中的ognl 2016-05-26 21:46 |
1.总结struts2 标签和ognl表达式结合,访问action的普通属性、对象属性、list、map的写法;
若要访问request\session\application传输的值该如何访问?

若要获取表单、url传输的值,该如何获取?
哪位前辈大哥给我简单写下,我理解理解,谢谢了  回复  
  

只有注册用户后才能发表评论。


网站导航:
              
 
网站地图