Recently I try out JUEL, and now I get confused how to write several methods which i can't find the example in the documentation.
It's only give me this http://juel.sourceforge.net/guide/start.html
and here what I wanna know how to write it out if I have context.setFunction("meh", "max", BigDecimal.class.getMethod("compareTo", BigDecimal.class));
since we know bigDecimal expression is write like foo.compareTo(bigDecimal);
how to write this in the expression?
Done easily with 2 possible answers
Since
SimpleContext
let you do arithmetical calculations (in my case), i simply put the calculation here. I also useValueExpression
(not in the right place i guess) to provide me mapped value fromSimpleContext
. Thus, here what i haveBut once again i don't really know is it right or not, so i came up with the second
Create a class, make some static methods which require 2 parameters, and here it goes. Let's say this class named
Operate
Then, i call it like this
I prefer use the second, hope this will be helpful