调用 vararg 方法的速度

发布于 2024-10-11 06:36:04 字数 534 浏览 3 评论 0原文

我正在尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

掩饰不了的爱 2024-10-18 06:36:04

我正在使用 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 !

够钟 2024-10-18 06:36:04

知道了。我正在使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文