使用JUEL处理不同的上下文

时间:2015-01-28 14:00:36

标签: java juel

我正在处理表达式并尝试使用上下文(我们在创建时使用的那个和我们在评估时使用的那个)。 下面是一些代码,它试图重现我的需求并强调问题。

    ExpressionFactory factory = new ExpressionFactoryImpl();

    SimpleContext createContext = new SimpleContext();
    createContext.setVariable("myBean", factory.createValueExpression(new MyBean("Laurent"), MyBean.class));

    String expression;
    expression = "${myBean.foo} ${exchange.host}";

    ValueExpression expr = factory.createValueExpression(createContext, expression, String.class);
    System.out.println("expr Class : " + expr.getClass());


    SimpleContext evalContext = new SimpleContext();
    List<String> hosts = asList("www.example.com", "www.foo.com", "www.bar.com");

    // I want to evaluate the same expression, but with different values for the variable exchange.
    for (String host : hosts) {
        evalContext.setVariable("exchange", factory.createValueExpression(new MyExchange(host), MyExchange.class));
        System.out.println(expression + " = " + expr.getValue(evalContext));
    }

我在https://github.com/laurentvaills/test-juel-expression上设置了一个基本的Maven项目来重现它。

你能告诉我为什么会收到以下错误:javax.el.PropertyNotFoundException: Cannot find property exchange ?

1 个答案:

答案 0 :(得分:0)

这不是JUEL问题,而是一般的EL问题。变量在解析时绑定。解析表达式后,无法更改它们。在评估时,您需要使用属性:

evalContext.getELResolver().setValue(
    evalContext,
    null,
    "exchange",
    new MyExchange(host));

有关详细信息,请参阅documentation for ELResolver