Examples of VelocityEngineFactory


Examples of org.springframework.ui.velocity.VelocityEngineFactory

@Configuration
class VelocityEngineProvider {

    @Bean
    public VelocityEngine getVelocityEngine() throws IOException, VelocityException {
        VelocityEngineFactory factory = new VelocityEngineFactory();
        Properties properties = new Properties();
        properties.put(Velocity.RESOURCE_LOADER, "class");
        properties.put("class.resource.loader.class", "org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader");
        factory.setVelocityProperties(properties);
        return factory.createVelocityEngine();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.