Re: JEXL: all object variables return null

2023-11-08 Thread Henri Biestro
Hi Rinke; >From the looks of it, I'd say the 'private static ' and permissions are >the most likely culprit (if you are using JEXL 3.3). JEXL will only see/introspect public classes for which it is allowed to through permissions; you own classes/packages must be allowed (they aren't by defaul

Re: [jexl] Problem with division of integer values and narrowing of BigDecimal to Integer

2023-11-08 Thread Henri Biestro
Hi Robert; There is no configuration that can help but you can certainly customize and create your own derivation of JexlArithmetic that would forego trying to narrow results for the common arithmetic operators. In your case, it might be enough to just override narrowBigInteger(...bigi) to retur