本文介紹了Java:如何在不實(shí)現(xiàn)接口的情況下獨(dú)立(在任何Web框架之外)計(jì)算EL表達(dá)式?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我想在應(yīng)用程序中使用EL。但我找不到任何方法。我通常最終需要一些我沒(méi)有實(shí)現(xiàn)的接口。
我有一個(gè)對(duì)象映射,我希望類(lèi)似Hello,${person.name}
這樣的字符串表達(dá)式的計(jì)算結(jié)果為字符串。
如何使用El、javax.el、OGNL或類(lèi)似的Commons來(lái)實(shí)現(xiàn)這一點(diǎn)?必須是獨(dú)立庫(kù)。
和我知道Java: using EL outside J2EE,并且已經(jīng)看到JSTL/JSP EL (Expression Language) in a non JSP (standalone) context。這不是我要找的。
我正在尋找的是添加什么依賴(lài)項(xiàng),然后如何初始化解析器的示例,該解析器將具有:
private static String evaluateEL( String expr, Map<String, String> properties );
并允許我執(zhí)行以下操作:
String greet = evaluateEL("Hello ${person.name}",
new HashMap(){{
put("person", new Person("Ondra"));
}}
);
并且我需要它使用一些有理性值,例如,在null
上使用""
,而不是拋出NPE左右。
推薦答案
有相當(dāng)多的EL引擎,其中大部分實(shí)現(xiàn)了JAVA表達(dá)式語(yǔ)言API。
公地EL(http://jakarta.apache.org/commons/el/)
實(shí)現(xiàn)了一直存在的JSPEL API。該庫(kù)可以在許多JSP容器(例如Tomcat)中找到,或者在許多供應(yīng)商的J2EE服務(wù)器中用作的基礎(chǔ)。
OGNL(http://commons.apache.org/proper/commons-ognl/)
當(dāng)今最具表現(xiàn)力的ELs之一,廣泛用于WebWork(Struts2)和Tapestry。
MVEL(https://github.com/mvel/mvel)
EL的新手,這是MVFlex/Valhara項(xiàng)目的一部分。特性看起來(lái)更符合OGNL提供的方法調(diào)用和一些有趣的正則表達(dá)式支持。
(統(tǒng)一)表達(dá)式語(yǔ)言(https://jcp.org/aboutJava/communityprocess/final/jsr341/index.html和http://jcp.org/en/jsr/detail?id=245)
標(biāo)準(zhǔn)表達(dá)式語(yǔ)言首先在Java EE 5(EL 2.1)中引入,并在Java EE 6(EL 2.2)和Java EE 7(EL 3.0)中得到增強(qiáng)。來(lái)自GlassFish項(xiàng)目的參考實(shí)現(xiàn)-
統(tǒng)一表達(dá)式語(yǔ)言。
JEXL(http://jakarta.apache.org/commons/jexl/)
一種基于Velocity解析器的實(shí)現(xiàn)。因此,它更像是一個(gè)有限的模板解決方案,具有方法調(diào)用之類(lèi)的功能。
Source
目前,我使用BeanUtils結(jié)束了此代碼-雖然很難看,但很好用。
import java.lang.reflect.InvocationTargetException;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.StringTokenizer;
import org.apache.commons.beanutils.PropertyUtils;
import org.apache.commons.lang.StringUtils;
import org.slf4j.LoggerFactory;
public static class SimpleEvaluator implements IExprLangEvaluator {
private static final org.slf4j.Logger log = LoggerFactory.getLogger( SimpleEvaluator.class );
@Override
public String evaluateEL( String template, Map<String, String> properties ) {
StringTokenizer st = new StringTokenizer( template );
String text = st.nextToken("${");
StringBuilder sb = new StringBuilder();
// Parse the template: "Hello ${person.name} ${person.surname}, ${person.age}!"
do{
try {
sb.append(text);
if( ! st.hasMoreTokens() )
break;
// "${foo.bar[a]"
String expr = st.nextToken("}");
// "foo.bar[a].baz"
expr = expr.substring(2);
// "foo"
String var = StringUtils.substringBefore( expr, ".");
Object subject = properties.get( var );
// "bar[a].baz"
String propPath = StringUtils.substringAfter( expr, ".");
sb.append( resolveProperty( subject, propPath ) );
text = st.nextToken("${");
text = text.substring(1);
} catch( NoSuchElementException ex ){
// Unclosed ${
log.warn("Unclosed ${ expression, missing } : " + template);
}
} while( true );
return sb.toString();
}
// BeanUtils
private String resolveProperty( Object subject, String propPath ) {
if( subject == null ) return "";
if( propPath == null || propPath.isEmpty() ) return subject.toString();
try {
return "" + PropertyUtils.getProperty( subject, propPath );
} catch( IllegalAccessException | InvocationTargetException | NoSuchMethodException ex ) {
log.warn("Failed resolving '" + propPath + "' on " + subject + ":
" + ex.getMessage(), ex);
return "";
}
}
}// class SimpleEvaluator
這篇關(guān)于Java:如何在不實(shí)現(xiàn)接口的情況下獨(dú)立(在任何Web框架之外)計(jì)算EL表達(dá)式?的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,