Como verificar se um valor é nulo com Velocity

O valor null é testado como o valor booleano false por Velocity

Crie o seguinte modelo chamado example4.vm:

This is a test
#if( !$test )
	Test is null
#end
#if( $test == true )
	Test is NOT null
#end
	

Crie o seguinte arquivo java:

import static org.junit.Assert.assertEquals;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;

import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.VelocityEngine;

public class VelocitySimple4 {

	public static void main(String[] argv){

		// Source directory
		String sourceDirectory = "V:/tmp/velocity/";
		
		
		// Create the velocity engine
        VelocityEngine ve = new VelocityEngine();
        
        ve.setProperty( "resource.loader", "file");
        ve.setProperty( "file.resource.loader.class", "org.apache.velocity.runtime.resource.loader.FileResourceLoader");
        ve.setProperty( "file.resource.loader.path", sourceDirectory);
        ve.setProperty( "file.resource.loader.cache", true);
        ve.setProperty( "file.resource.loader.modificationCheckInterval", "2");

        ve.init();		
		
        // Get the template
        Template t = ve.getTemplate( "example4.vm" );

        // Create the 
        VelocityContext context = new VelocityContext();
        context.put("test", null);

        try {
	        // Create the output file
	        Writer out = new BufferedWriter(new OutputStreamWriter( new FileOutputStream( new File( sourceDirectory + "example4.txt" ) ), "UTF8") );
	    	
	        t.merge( context, out);
	        
	        out.close();
        } catch ( Exception e ){
        	e.printStackTrace();
        }
	}
	
}

O arquivo gerado example4.txt será:

	
This is a test
	Test is null
	

O código primeiro inicia o VelocityEngine usando o carregador de recursos de arquivo. O teste validável é definido no contexto com o valor null, o modelo é mesclado com o contexto e a saída é armazenada no arquivo example4.txt.


Referências:

Velocity

Comentários Recentes