[
https://issues.apache.org/jira/browse/JEXL-25?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12534219
]
peter royal commented on JEXL-25:
---------------------------------
I've updated the Uberspect code with the latest from Velocity, which brings
varargs support
> Call method with varargs
> ------------------------
>
> Key: JEXL-25
> URL: https://issues.apache.org/jira/browse/JEXL-25
> Project: Commons JEXL
> Issue Type: New Feature
> Affects Versions: 1.1
> Environment: All
> Reporter: Marek Lewczuk
> Priority: Critical
>
> Jexl doesn't allow for using method with varargs - method cannot be found and
> because of that expression returns null. Try following code:
> class TestClass {
> public String testVarArgs (Integer... args) {
> return "Test";
> }
> }
> String jexlExp = "test.testVarArgs(1,2,3,4,5)";
> Expression e = ExpressionFactory.createExpression(jexlExp);
> JexlContext jc = JexlHelper.createContext();
> jc.getVars().put("test", new TestClass());
> Object o = e.evaluate(jc);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.