MVEL 验证没有值的算术表达式

MVEL to validate arithmetic expression without values

我想在不提供输入或值的情况下验证给定的算术表达式 (a+b) 是否有效。 我尝试使用 ExpressionCompilerMVEL.compileExpression() 如下,

String expression = "a+b";
ExpressionCompiler c = new ExpressionCompiler(formula,ctx );
//c.setVerifyOnly(true); // tried this but didn't help
c.compile() // this will throw exception if expression is invalid

这适用于大多数情况,例如 a+b*,但是当表达式为 a+b) 时,它被编译为有效表达式,编译器不会抱怨额外的括号。

有什么方法可以让MVEL验证a+b)这种表达式吗?

终于找到了如何在不提供值或输入的情况下验证表达式。 解决方法很简单,只需要启用ParserContext.setStrictTypeEnforcement(true)

下面是代码,

ParserContext ctx = new ParserContext();
ctx.setStrictTypeEnforcement(true); // this made the trick
ExpressionCompiler c = new ExpressionCompiler(formula,ctx );
c.compile();// now this throws exception for a+b) -> unqualified type in strict mode for: )