%@ taglib uri="http://jakarta.apache.org/taglibs/tomcat_admin-1.0"
prefix="adm" %>
<%@ page buffer="none" %>
Context list
Prepare to restart
<%
try {
cm.stop(); // all contexts stopped
cm.shutdown(); // all contexts removed
cm.init();
cm.start();
} catch(Exception ex) {
ex.printStackTrace();
}
System.out.println("Done restarting ");
%>
Server restarted