Package com.dyuproject.web.rest.dispatcher

Examples of com.dyuproject.web.rest.dispatcher.VelocityDispatcher


    @Override
    protected void init()
    {
        // velocity template
        getWebContext().addViewDispatcher("velocity", new VelocityDispatcher());       
    }
View Full Code Here


public class HelloWorldService extends AbstractService
{

    protected void init()
    {       
        getWebContext().addViewDispatcher("velocity", new VelocityDispatcher());
        getWebContext().addViewDispatcher("st", new StringTemplateDispatcher());
    }
View Full Code Here

TOP

Related Classes of com.dyuproject.web.rest.dispatcher.VelocityDispatcher

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.