在Velocity模板中传递Java函数

时间:2016-11-16 22:30:39

标签: java velocity vtl

我坚持这个。

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。为什么我没有收到实际的消息?

2 个答案:

答案 0 :(得分:4)

来自Velocity文档:

  

Velocity只是真正Java对象的外观......

因此,要在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() );  

所以,在你的速度模板......

$messageSource.getMessage("identifier")

答案 1 :(得分:3)

  

你无法直接传递速度函数。

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>