在Velocity模板中传递Java函数



我被卡住了

public String getMessage(String id)
{
    log.error("passing parameter "+id+" "+id.getClass().getName());
    if(id.compareTo("1")==0)
    {
        return "nothing perfect";
    }
    else {return "All done";}
}

. vm

#set($parameter="1")
#set($message = $action.getMessage("$parameter").show())
<td>$message</td>`

在呈现的HTML中,我得到$message。为什么我没有收到真正的信息?

来自Velocity文档:

速度只是一个真实的Java对象的伪装…

因此,要访问Velocity模板中类的公共方法,相关类的对象应该对Velocity模板可见。

public class MessageSource {
    public String getMessage(String id){
        log.error("passing parameter "+id+" "+id.getClass().getName());
        if(id.compareTo("1")==0){
            return "nothing perfect";
        } else { 
            return "All done";
        }
    }
}

现在暴露MessageSource的对象:

/*  first, get and initialize an engine  */
VelocityEngine ve = new VelocityEngine();
ve.init();
/*  next, get the Template  */
Template t = ve.getTemplate( "helloworld.vm" );
/*  create a context and add data */
VelocityContext context = new VelocityContext();
context.put("messageSource", new MessageSource());
/* now render the template into a StringWriter */
StringWriter writer = new StringWriter();
t.merge( context, writer );
/* show the World */
System.out.println( writer.toString() );  

那么,在你的velocity模板中…

$messageSource.getMessage("identifier")

    参考链接
  • 参考链接

不能直接以速度传递函数

Test.java

public class Test {
    Message mg = new Message(); 
    context.put("formatter", mg);         
}

Message.java

public class Message {
    public String getMessage(String id){
        log.error("passing parameter "+id+" "+id.getClass().getName());
        if(id.compareTo("1")==0){
            return "nothing perfect";
        } else { 
            return "All done";
        }
    }
}

example.vm

#set($parameter="1")
#set($message = $formatter.Message($parameter))
<td>$message</td>

相关内容

  • 没有找到相关文章

最新更新