Package org.apache.catalina

Examples of org.apache.catalina.Container.reload()


                if(log.isInfoEnabled())
                    log.info(sm.getString("hostConfig.reload", app.name));
                Context context = (Context) host.findChild(app.name);
                if (context.getState().isAvailable()) {
                    // Reload catches and logs exceptions
                    context.reload();
                } else {
                    // If the context was not started (for example an error
                    // in web.xml) we'll still get to try to start
                    try {
                        context.start();
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.