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

cloud.agileframework.spring.util.ExpressionUtil Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.spring.util;

import org.springframework.expression.EvaluationContext;
import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;

/**
 * @author 佟盟
 * 日期 2021-05-13 14:40
 * 描述 表达式解析器
 * @version 1.0
 * @since 1.0
 */
public class ExpressionUtil {
    private static final ExpressionParser PARSER = new SpelExpressionParser();
    private static final EvaluationContext CONTEXT = new StandardEvaluationContext(BeanUtil.getApplicationContext());


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy