Velocity Token Nesting
I have created two velocity token and calling one velocity token into another but after debug it print plain format i.e. {{my.VTL-1}} only.
My Velocity token script -2 is below given, {{my.VTL-1}}, {{my.VTL-2}}
#if( $test_cList.isEmpty() )
#set( $DEFAULT = 0 )
#else
{{my.VTL-1}}
#end
Below is dummy VTL-1 script
#set( $DEFAULT_VTL = 1 )
$DEFAULT_VTL
What is the correct format to call one VTL token into another one?