用测试理解如何使用ognl: 读取和设置包含筛选条件的列表元素的属性。先转一篇介绍OGNL 语言介绍与实践??官
用测试理解如何使用ognl: 读取和设置包含筛选条件的列表元素的属性。
先转一篇介绍
OGNL 语言介绍与实践?
?
官网上的资料比较精炼,例子很少,还是写一些测试代码来验证用法:
?
包装一下:
* 表示将设置列表中name等于Alex的所有元素的id属性
*/
public void testSetValue_ROOT_Multiple_Normal() {
try {
OgnlExpression expression = null;
expression = new OgnlExpression("array.{^ #this.name == 'Alex' }[].id");
expression.setValue(ROOT, "007");
//匹配的第二第四条记录值改变了
assertEquals("007",((Part)ROOT.getArray()[1]).getId());
assertEquals("007",((Part)ROOT.getArray()[3]).getId());
//匹配的第一第三条记录值没变
assertEquals("002",((Part)ROOT.getArray()[0]).getId());
assertEquals("003",((Part)ROOT.getArray()[2]).getId());
} catch (OgnlException e) {
e.printStackTrace();
fail("oops!");
}
}</pre>
?
<p>?</p>
<p>?</p> * 表示将设置列表中name等于Alex的所有元素的id属性
*/
public void testSetValue_ROOT_Multiple_Normal() {
try {
ExtendedOgnlExpression expression = null;
expression = new ExtendedOgnlExpression("array.{? #this.name == 'Alex' }[].id");
expression.setValue(ROOT, "007");
//匹配的第二第四条记录值改变了
assertEquals("007",((Part)ROOT.getArray()[1]).getId());
assertEquals("007",((Part)ROOT.getArray()[3]).getId());
//没匹配的第一第三条记录值没变
assertEquals("002",((Part)ROOT.getArray()[0]).getId());
assertEquals("003",((Part)ROOT.getArray()[2]).getId());
} catch (OgnlException e) {
e.printStackTrace();
fail("oops!");
}
}
}
</pre>
<p>?简单起见,做了一些copy&paste。 修正测试用例的一个小错误, ^? 改为 ? ,即</p>
<pre name="code" class="java">package org.airlinkmatrix.test.ognl;
import ognl.Ognl;
import ognl.OgnlContext;
import ognl.OgnlException;
public class ExtendedOgnlExpression {
private static final OgnlContext DEFAULT_CONTEXT = (OgnlContext)Ognl.createDefaultContext(null);
private OgnlContext context;
private String expressionString;
public void setContext(OgnlContext context) {
this.context = context;
}
public OgnlContext getContext() {
if (context==null){
context = DEFAULT_CONTEXT;
}
return context;
}
public ExtendedOgnlExpression(String expressionString)
{
super();
this.expressionString = expressionString;
}
public Object getExpression(String expressionString) throws OgnlException
{
return Ognl.parseExpression(expressionString);
}
public Object getValue(Object rootObject) throws OgnlException
{
if (expressionString.indexOf("[]")>0){
throw new OgnlException("getValue do not support []");
}
return Ognl.getValue(getExpression(expressionString), getContext(), rootObject);
}
public void setValue(Object rootObject, Object value) throws OgnlException
{
if (expressionString.indexOf("[]")>0){
setMultipleValue(rootObject, value);
}else{
setValue(rootObject, value, expressionString);
}
}
private void setMultipleValue(Object rootObject, Object value)
throws OgnlException {
//依次在[]中填入0,1,2,...,设置目标值,直到超出匹配列表的最后一个,发生IndexOutOfBoundsException为止
int i = 0;
while(true){
try {
setValue(rootObject, value, addIndex(expressionString,i));
} catch (IndexOutOfBoundsException e) {
e.printStackTrace();
break;
}
i++;
}
}
private void setValue(Object rootObject, Object value,String expressionString) throws OgnlException {
Ognl.setValue(getExpression(expressionString), getContext(), rootObject, value);
}
private String addIndex(String expressionString, int i) {
int index = expressionString.indexOf("[]");
String str = expressionString.substring(0,index+1)
+String.valueOf(i)
+expressionString.substring(index+1);
return str;
}
}
</pre>
<p>?</p>
<p>运行测试,成功:)</p>
<p>?</p>
<p>?</p>
<p>?</p> 3 楼 airlink 2009-11-21 这样就支持了出现单个列表[]符号的多记录赋值。
下一步可以考虑支持多个列表[]符号的两重或多重列表记录的赋值。