12.2. 字面字符串

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

  1. #set( $directoryRoot = "www" )
  2. #set( $templateName = "index.vm" )
  3. #set( $template = "$directoryRoot/$templateName" )
  4. $template

输出将会是:

  1. www/index.vm

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

  1. #set( $foo = "bar" )
  2. $foo
  3. #set( $blargh = '$foo' )
  4. $blargh

输出是:

  1. Bar
  2. $foo

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