Loads a properties file from the WEB-INF/classes folder within the web application. Individual properties can then be extracted by referring directly to the property name.
Javascript example:
var props = system.loadPropertiesFromClasspath("foo.properties");
var x = props.property1;
Javascript example: