-
I have a context and I put a lot of functions in it. This is common. Is there any way to keep a common context and then merge it into another?
Thanks.
2009-06-16 11:58:56 UTC in Java Unified Expression Language
-
Thanks!
2009-06-16 11:52:15 UTC in Java Unified Expression Language
-
I have a scenario where user enters the formula in Java EL. What I want to be able to do is to check the syntax without actually evaluating the expression. Is that possible? How?.
2009-06-15 13:47:54 UTC in Java Unified Expression Language
-
I have a map M that has { 123 : "abc", "123" : "xyz"}
If I evaluate ${M[123]}, I get a null value but if I evaluate ${M['123']} I get xyz. Two questions:
1) shouldn't ${M[123]} return abc?
2) shouldn't ${M.123} also work and return abc? I get a parse error.
Thanks.
2009-06-11 10:32:57 UTC in Java Unified Expression Language