Package jst

Examples of jst.FileTemplateLoader


    private void initializeContext() throws IOException {
        if( context == null ) {
            context = new TemplateContextImpl();
            for( File resourcePath : resourcePaths ) {
                context.addLoader( new FileTemplateLoader( resourcePath ) );
            }
        }
    }
View Full Code Here


public class EmbedTemplateTest {

    public static void main(String[] args) throws IOException {
        TemplateContextImpl context = new TemplateContextImpl();
        context.addLoader( new FileTemplateLoader( new File("./test") ) );
        ScriptRuntime runtime = context.load("/embedded-test.jst");
        Object output = runtime.addVariable("name", "Charlie").addVariable("age", 31).invoke();

        System.out.println( output );
    }
View Full Code Here

TOP

Related Classes of jst.FileTemplateLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.