Juel 表达式使用

JUEL 包的结构例如以下:

 Juel 表达式使用_第1张图片

1.1.1. Juel maven仓库配置

眼下最新的版本号是2.2.7。使用的时候在pom.xml中加入仓库坐标就可以。

 
de.odysseus.juel 
juel-spi 
2.2.7 
 
 
de.odysseus.juel 
juel-api 
2.2.7 
 
 
de.odysseus.juel 
juel-impl 
2.2.7 
 


juel-api-2.2.7.jar ——包括javax.el 包下的一些类

juel-impl-2.2.7.jar ——包括de.odysseus.el 实现类

juel-spi-2.2.7.jar ——包括META-INF/service/javax.el.ExpressionFactory 服务提供资源的定义(假设你的classpath里有多个EL的实现。而你又希望使用JUEL的实现,那么须要调用ExpressionFactory.newInstance() 

1.1.2. Juel hello word

//ExpressionFactory类的实现是de.odysseus.el.ExpressionFactoryImpl  
ExpressionFactory factory = new ExpressionFactoryImpl();  
//de.odysseus.el.util provides包提供即时可用的子类ELContext
//创建上下文对象context
SimpleContext context = new SimpleContext();  
//函数的前缀 函数的名称 ,运行的方法  三个參数的含义
context.setFunction("shareniu", "max", Math.class.getMethod("min", int.class, int.class));
//foo值为3
context.setVariable("foo", factory.createValueExpression(3, int.class));
//解析表达式  
ValueExpression e = factory.createValueExpression(context, "${shareniu:max(foo,bar)}", int.class);  
//设置顶级的属性"bar"值为1  
factory.createValueExpression(context, "${bar}", int.class).setValue(context, 2);
// get value for our expression
System.out.println(e.getValue(context)); // --> 2


你可能感兴趣的:(Juel 表达式使用)