You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
suppose employe.id = null and expression = "employe.id ? true : false"
if I am trying to evaluate the above expression using SpelExpressionEvaluator.compile(expression) function call. It returns NullPointer exception which was not happening in 0.2.5
The text was updated successfully, but these errors were encountered:
I have come to the same issue. Any possible workaround or solution is appreciated.
Here is another simple example throwing the exception
var spel2js = require("[email protected]") // replace this 0.2.6 and it works
var r = spel2js.SpelExpressionEvaluator.compile("X == 1")
var row = { X : null, Y: 1.0 }
r.eval(row)
suppose employe.id = null and expression = "employe.id ? true : false"
if I am trying to evaluate the above expression using SpelExpressionEvaluator.compile(expression) function call. It returns NullPointer exception which was not happening in 0.2.5
The text was updated successfully, but these errors were encountered: