其他分享
首页 > 其他分享> > 使用SPEL自定义表达式

使用SPEL自定义表达式

作者:互联网

自定义表达式

Spring提供了一个可以自定义表达式的接口

package com.qbb.qmall.item;

import org.junit.Test;
import org.springframework.expression.Expression;
import org.springframework.expression.common.TemplateParserContext;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;

import java.util.Arrays;

/**
 * @author QiuQiu&LL (个人博客:https://www.cnblogs.com/qbbit)
 * @version 1.0
 * @date 2022-05-27  23:33
 * @Description:
 */

public class ExpressionTest {

    @Test
    public void test01() {
        // 准备一个表达式解析器
        SpelExpressionParser spelExpressionParser = new SpelExpressionParser();

        // 定义一个表达式字符串
        String spelString = "qiuqiu&#{1+21}";// 计算表达式中的数据

        // 创建一个模板表达式解析器上下文
        TemplateParserContext parserContext = new TemplateParserContext();

        // 解析表达式
        Expression expression = spelExpressionParser.parseExpression(spelString,
                parserContext);

        // 计算表达式,获取结果
        StandardEvaluationContext context = new StandardEvaluationContext();
        context.setVariable("args", Arrays.asList(12,13,14,15));

        // 计算上下文,动态计算结果,返回值为字符串
        String value = expression.getValue(context, String.class);
        System.out.println("value = " + value);
    }
}

image

String spelString = "qiuqiu&#{#args[1]}";// 获取args的第二个参数

image

String spelString = "qiuqiu&#{#args[1] * #args[2]}";// 获取args的第二个参数

image

String spelString = "qiuqiu&#{#args[1] * #args[2]}:#{new String('spel').toUpperCase()}";// 调用方法

image

String spelString = "qiuqiu&#{#args[1] * #args[2]}:#{new String('spel').toUpperCase()}" +
                "===#{T(java.lang.Math).random()}";// 调用方法

image

String spelString = "当前时间:#{#currentDate}";

image

详细的使用信息,各位小伙伴可以参考官方文档

标签:spelString,String,自定义,args,SPEL,import,expression,表达式
来源: https://www.cnblogs.com/qbbit/p/16319531.html