MVEL | |
Developer: | Mike Brock and Various Contributors |
Genre: | Expression Language (EL) |
License: | Apache License |
Website: | https://github.com/mvel/mvel |
Latest Release Version: | 2.3.0 |
Operating System: | Cross-platform |
Programming Language: | Java |
MVFLEX Expression Language (MVEL) is a hybrid dynamic/statically typed, embeddable Expression Language and runtime for the Java Platform. Originally started as a utility language for an application framework, the project is now developed completely independently.
MVEL is typically used for exposing basic logic to end-users and programmers through configuration such as XML files or annotations. It may also be used to parse simple JavaBean expressions.
The runtime allows MVEL expressions to be executed either interpretively, or through a pre-compilation process with support for runtime bytecode generation to remove overhead.
Since MVEL is meant to augment Java-based software, it borrows most of its syntax directly from the Java programming language with some minor differences and additional capabilities. For example: as a side effect of MVEL's typing model, which treats class and method references as regular variables, it is possible to use both class and function pointers (but only for static methods).
// get millis time = millis;
MVEL also allows collections to be represented as folds (or projections) in a Lisp-like syntax.
MVEL relies on Java namespaces and classes, but does not possess the ability to declare namespaces or classes.
Here is an example of the Quicksort algorithm implemented in MVEL 2.0, demonstrating the scripting capabilities of the language.
// the main quicksort algorithmdef quicksort(list)
// define method to concatenate lists.def concat(list1, pivot, list2)
// create a list to sortlist = [5,2,4,1,18,10,15,1,0];
// sort it!quicksort(list);