-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 2.0
-
Fix Version/s: 2.1
-
Labels:
Trying to evaluate a long in a Jexl expression and the engine tries to cast it to an Integer.
Expression e = engine.createExpression("TIMESTAMP > 20100102000000");
JexlContext ctx = new MapContext();
ctx.set("TIMESTAMP", new Long("20100103000000"));
e.evaluate(ctx);
throws a NumberFormatException at Integer.parseInt().