mvel
mvel copied to clipboard
MVEL (MVFLEX Expression Language)
Environment: Windows 7, amd64 MVEL: 2.1.7.Final, 2.1.4.Final java version "1.8.0-ea" Java(TM) SE Runtime Environment (build 1.8.0-ea-b118) Java HotSpot(TM) 64-Bit Server VM (build 25.0-b60, mixed mode) ***\* COMPILER BUG! REPORT THIS...
Running the following test against MVEL 2.1.3.Final, a null value is being converted into the string "null", which is not the desired behavior. The expectation is that a null value...
Hi, I would like to know if you would be open to adding some other convenience operators. For example, I would find a simmetric operator to contains where the array...
Can you update pages, such as http://mvel.codehaus.org/Downloading+MVEL, to point to the latest release, i.e. 2.2.4.FINAL? The "Issues" link on that page points to http://jira.codehaus.org/browse/MVEL but should now point to https://github.com/mikebrock/mvel/issues...
Currently, the only way to use the `@{include}` orb is with a `File` path. It would be nice to also be able to load the given template from the classpath...
vars.put("A", false); vars.put("B", true); vars.put("C", false); vars.put("D", true); Boolean result = (Boolean) MVEL.eval("A&&C||(A&&(B||A&&D)||A&&C)", vars); // result = false result = MVEL.evalToBoolean(expression, vars); // result = true
First of all, awesome tool. I just recently starting messing around with MVEL. I sent an email to the user mailing list this morning regarding the possibility of switching the...
Hi mike, Defining the same plugin twice in pom.xml can lead to problems in older maven versions and lead to warnings/fail-fasts in newer maven versions.
Hi, is there an MVEL grammar available? I asked this on stackoverflow (http://stackoverflow.com/questions/21600680/mvel-grammar-available) and 2 years ago via the mailing list (didn't get response). What be nice to use this...
java -jar mvel2-2.1.3.Final.jar //same for older version [01:32PM] mvel2$ assert true //same for MVEL.eval("assert anyexpression") Exception in thread "main" java.lang.StackOverflowError at java.lang.ThreadLocal.getMap(Unknown Source) at java.lang.ThreadLocal.set(Unknown Source) at org.mvel2.compiler.AbstractParser.contextControl(AbstractParser.java:2272) at org.mvel2.MVELInterpretedRuntime.parse(MVELInterpretedRuntime.java:69)...