调用 vararg 方法的速度
我正在尝试从 Velocity 调用 varargs 方法。 该函数在名为“Abc”的类中定义为:
public static void function(String ... values)
我将上下文设置为
params.put("concat",new Abc());
模板包含对该方法的调用如下:
$concat.function('Var1','var2')
如果我将函数修复为只有一个参数,则一切正常,如果我移动到可变参数(或byte[]
就此事而言),它无法解析它,我也没有得到我想要的东西。我设置了一些日志设置并获取速度:
Null reference [template 'bufferTemplate', line 1, column 1] :
$concat.function('Kuku','Muku') cannot be resolved.
I am trying to call a varargs method from Velocity.
The function is defined in a Class named "Abc" as:
public static void function(String ... values)
I set the context as
params.put("concat",new Abc());
The template contains the call to the method as:
$concat.function('Var1','var2')
If I fix the function to have one argument everything works fine, if I move to the varargs (or a byte[]
for that matter), it can't resolve it and I don't get back what I wanted. I set some log settings and go that velocity gets:
Null reference [template 'bufferTemplate', line 1, column 1] :
$concat.function('Kuku','Muku') cannot be resolved.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在使用 Velocity 1.6.4,对我来说它的工作方式就像你写的那样!更新你的速度!据我所知,他们从 1.6 版本开始支持
varags
!I am using Velocity 1.6.4 and for me it works the way you've written! Update your Velocity! As far as I have seen they have support for
varags
from version 1.6 !知道了。我正在使用 axis,它似乎使用的是旧版本的 Velocity。一旦在类路径中首先设置了速度,它就会起作用。
感谢您的帮助。
Got it. I'm using axis, which seems to be using an older version of Velocity. Once velocity was set first in the classpath, it works.
Thanks for the help.