12.2. 字面字符串

当使用#set 指令时,括在双引号中的字面字符串将解析和重新解释,如下所示:

#set( $directoryRoot = "www" )
#set( $templateName = "index.vm" )
#set( $template = "$directoryRoot/$templateName" )
$template

输出将会是:

www/index.vm

然而,当字面字符串括在单引号中时,他将不被解析:

#set( $foo = "bar" )
$foo
#set( $blargh = '$foo' )
$blargh

输出是:

Bar
 $foo

默认情况下,使用单引号来渲染未解析文本在Velocity是有效的。这种特征可以通过编辑velocity.properties 中的stringliterals.interpolate=false来改变。