juel性能テスト式の書き方がおかしい


オブジェクトのプロパティを取得するには、「${test.a}」と書きますが、外層に$がある場合は、テストを削除するとパフォーマンスが優れています.100000回=>1243ミリ秒100000回=>394ミリ秒のテストコードです.

package com.eyu.ahxy.module.expression.juel;

import javax.el.ExpressionFactory;
import javax.el.ValueExpression;

import org.junit.Test;

import de.odysseus.el.ExpressionFactoryImpl;
import de.odysseus.el.util.SimpleContext;

/**
 * 1000000  ===>1243  100000  ===>394 
 * @author bean
 */
public class JuelTest {

	public static final int NUM = 1000000;

	public int getA() {
		return 10;
	}

	public int getB() {
		return 10;
	}

	String exp = "${Math:min(Math:floor(test.a*test.b),Math:floor(c+d*e))}";

	ExpressionFactory factory = new ExpressionFactoryImpl();

	SimpleContext context = new SimpleContext();

	@Test
	public void compileTest() throws Exception {
		context.setFunction("Math", "min", Math.class.getMethod("min", int.class, int.class));
		context.setFunction("Math", "floor", Math.class.getMethod("floor", double.class));
		context.setVariable("test", factory.createValueExpression(new JuelTest(), JuelTest.class));
		context.setVariable("c", factory.createValueExpression(10, Integer.class));
		context.setVariable("d", factory.createValueExpression(10, Integer.class));
		context.setVariable("e", factory.createValueExpression(2, Integer.class));
		ValueExpression e = factory.createValueExpression(context, exp, String.class);

		for (int i = 0; i < NUM; i++) {
			Object result = e.getValue(context);
			// System.err.println(result);
		}
	}

}




使用するjarパッケージバージョン2.2.7

de.odysseus.juel
juel-spi
2.2.7


de.odysseus.juel
juel-api
2.2.7


de.odysseus.juel
juel-impl
2.2.7