Package org.apache.tomcat.core

Examples of org.apache.tomcat.core.ContextManager.createContext()


        // Need to find all the "config" that
        // was read from server.xml.
        // So far we work as if the admin interface was
        // used to remove/add the context.
        // Or like the deploytool in J2EE.
        Context ctx1=cm.createContext();
        ctx1.setContextManager( cm );
        ctx1.setPath(ctx.getPath());
        ctx1.setDocBase(ctx.getDocBase());
        ctx1.setReloadable( ctx.getReloadable());
        ctx1.setDebug( ctx.getDebug());
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.