Package org.grails.jetty

Examples of org.grails.jetty.JettyServer


*        Created: Jan 7, 2009
*/
public class EmbeddableServerFactoryImpl implements EmbeddableServerFactory {

    public EmbeddableServer createInline(String basedir, String webXml, String contextPath, ClassLoader classLoader) {
        return new JettyServer(basedir, webXml, contextPath, classLoader);
    }
View Full Code Here


    public EmbeddableServer createInline(String basedir, String webXml, String contextPath, ClassLoader classLoader) {
        return new JettyServer(basedir, webXml, contextPath, classLoader);
    }

    public EmbeddableServer createForWAR(String warPath, String contextPath) {
        return new JettyServer(warPath, contextPath);
    }
View Full Code Here

TOP

Related Classes of org.grails.jetty.JettyServer

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.