Difference between revisions of "OGNL"

From GreenVulcano Wiki
Jump to: navigation, search
(Created page with "OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects, plus other extras such as list projection and s...")
 
Line 5: Line 5:
  
 
This link reference [http://commons.apache.org/ognl/language-guide.html OGNL] syntax description.
 
This link reference [http://commons.apache.org/ognl/language-guide.html OGNL] syntax description.
 +
 +
{{GVESB}} provides some utility classes that can simplify the configurator work:
 +
* [[XMLUtils]] : XML manipulation
 +
* [[TextUtils]] : Text manipulation
 +
* [[DateUtils]] : Date&Time manipulation

Revision as of 19:28, 13 February 2012

OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects, plus other extras such as list projection and selection and lambda expressions. You use the same expression for both getting and setting the value of a property.

GreenVulcano® ESB uses OGNL script in various Engine components to empower it's objects manipulation capability. In some scenario it's an alternative to JavaScript.

This link reference OGNL syntax description.

GreenVulcano® ESB provides some utility classes that can simplify the configurator work: