All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.whaleal.icefrog.extra.expression.engine.jfireel.JfireELEngine Maven / Gradle / Ivy

There is a newer version: 1.1.71
Show newest version
package com.whaleal.icefrog.extra.expression.engine.jfireel;

import com.whaleal.icefrog.extra.expression.ExpressionEngine;
import com.jfirer.jfireel.expression.Expression;

import java.util.Map;

/**
 * JfireEL引擎封装
* 见:https://github.com/eric_ds/jfireEL * * @since 1.0.0 * @author Looly * @author wh */ public class JfireELEngine implements ExpressionEngine { /** * 构造 */ public JfireELEngine(){ } @Override public Object eval(String expression, Map context) { return Expression.parse(expression).calculate(context); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy