在Apache Velocity模板中使用自定义对象类的方法

时间:2013-11-05 15:54:48

标签: java templates velocity

我向Apache Velocity模板传递了User类型的变量(由我创建)。 User有方法getUsername(),在Velocity模板中我使用如下:

#if($user)
<p>
User Created $user.getUsername()
</p>
#end

但输出为User Created $user.getUsername(),而不是预期的User Created Pluto;为什么??你能救我吗??

1 个答案:

答案 0 :(得分:2)

这意味着getUsername()方法返回的值为null,或者该方法可能不存在。