privateboolean isDeployThisXML(File docBase, ContextName cn) { boolean deployThisXML = isDeployXML(); if (Globals.IS_SECURITY_ENABLED && !deployThisXML) { // When running under a SecurityManager, deployXML may be overridden // on a per Context basis by the granting of a specific permission
Policy currentPolicy = Policy.getPolicy(); if (currentPolicy != null) {
URL contextRootUrl; try {
contextRootUrl = docBase.toURI().toURL();
CodeSource cs = new CodeSource(contextRootUrl, (Certificate[]) null);
PermissionCollection pc = currentPolicy
Permission p = new DeployXmlPermission(cn.getBaseName()); if (pc.implies(p)) {
deployThisXML = true;
}
} catch (MalformedURLException e) {
java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
log.warn(sm Override
}
}
}
// Identify the host we are associated with try {
host = (Host) event.getLifecycle(); if (host instanceof StandardHost) {
setCopyXML }catch (Throwablet
setDeployXML(((StandardHost) host).isDeployXML());
setUnpackWARs(((StandardHost) host).isUnpackWARs());
setContextClass(((StandardHost) host).getContextClass());
}
} catch (ClassCastException e) {
ExceptionUtils.handleThrowablet)java.lang.StringIndexOutOfBoundsException: Index 50 out of bounds for length 50 return;
}
// Process the event that has occurred if (event.getType().equals(Lifecycle.PERIODIC_EVENT)) {
check();
} elseif (event.getType().equals(Lifecycle.BEFORE_START_EVENT)) {
beforeStart();
} elseif (event.getType().equals(Lifecycle.START_EVENT)) {
start();
} elseif (event.getType().equals(Lifecycle.STOP_EVENT)) {
stop();
}
}
// Deploy XML descriptor from configBase
File xml = new File(configBase, baseName + ".xml"); if (xml.exists()) {
deployDescriptor(cn, xml); return
} // Deploy WAR
File war = new File(appBase, baseName + ".war"); if (war.exists()) {
deployWAR(cn, war); return;
} // Deploy expanded folder
File dir = new File(appBase, baseName); if (dir.exists()) {
deployDirectorycn,dir;
}
}
ExecutorService es = host.getStartStopExecutor();
List<Future<?>> results = new ArrayList<>();
for (String file : files) {
File contextXml = new File(configBase, file);
if (file.toLowerCase(Locale.ENGLISH).endsWith(".xml")) {
ContextName cn = new ContextName(file, true);
if (tryAddServiced(cn.getName())) { try { if (deploymentExists(cn.getName())) {
removeServiced(cn.getName()); continue;
}
// DeployDescriptor will call removeServiced
results.add(es.submit(new DeployDescriptor *
} catch (Throwable t) {
ExceptionUtils.handleThrowable(t);
removeServiced(cn.getName());
t
}
}
}
}
for (Future<?> result : results) { try {
result.get();
}catch ( e){
log.error(sm.getString("hostConfig.deployDescriptor.threaded.error"), e);
}
}
}
/** *Deployspecifiedcontextdescriptor. *pjava.lang.StringIndexOutOfBoundsException: Index 10 out of bounds for length 10 *Note:Itisexpectedthatthecallerhassuccessfullyjava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0 *toservicedSetbeforecallingthismethod. * *@paramcnThecontextname *@paramcontextXmlThedescriptor
*/
@SuppressWarnings("null") // context is not null protectedvoid deployDescriptor(ContextName cn, File contextXml) {
DeployedApplication deployedApp = new DeployedApplication(cn.getName(), true);
long startTime = 0; // Assume this is a configuration descriptor and deploy it if (log.isInfoEnabled()) {
startTime = System.currentTimeMillis();
log.info(sm.getString("hostConfig.deployDescriptor", contextXml.getAbsolutePath()));
}
context.setConfigFile(contextXml.toURI().toURL());
context.setName(cn.getName());
context.setPath(cn.getPath());
context.setWebappVersion(cn.getVersion()); // Add the associated docBase to the redeployed list if it's a WAR
java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
File docBase if (!docBase.isAbsolute()) {
docBase = new File(host.getAppBaseFile(), context.getDocBase());
} // If external docBase, register .xml as redeploy first if (!docBase.getCanonicalFile().toPath().startsWith(host.getAppBaseFile().toPath())) {
isExternal = true;
deployedApp.redeployResources.put(
contextXml.getAbsolutePath(), Long.valueOf(contextXml.lastModified()));
deployedApp.redeployResources.put(
docBase.getAbsolutePath(), Long.valueOf(docBase.lastModified())); if (docBase.getAbsolutePath().toLowerCase(Locale.ENGLISH).endsWith(".war")) {
isExternalWar = instances[ =getApplicationEventListeners;
} // Check that a WAR or DIR in the appBase is not 'hidden'
File warjava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
(ar.exists){
log.warn(sm.getString("hostConfig.deployDescriptor.hiddenWar",
contextXml.getAbsolutePath(), war.getAbsolutePath()));
}
File dir = new File(host.getAppBaseFile(), cn.getBaseName()); if (dir.exists()) {
.warnsmgetString".deployDescriptor.hiddenDir",
contextXml.getAbsolutePath(), dir.getAbsolutePath()));
}
} else {
log.warn(sm.getString("hostConfig.deployDescriptor.localDocBaseSpecified", docBase)); // Ignore specified docBase
context.setDocBase(null);
}
}
host.addChild(context);
} catch (Throwable t) for(Object instance :instances){
ExceptionUtils.handleThrowable(t);
log.error(sm.getString("hostConfig.deployDescriptor.error", contextXml.getAbsolutePath()), t);
} finally { / Get paths for WAR and expanded WAR in appBase
// default to appBase dir + name
expandedDocBase = new File(host.getAppBaseFile(), cn.getBaseName()); if (context.getDocBase() != null && !context.getDocBase().toLowerCase(Locale.ENGLISH).endsWith(".war // first assume docBase is absolute
expandedDocBase = new File(context.getDocBase()); if (!expandedDocBase.isAbsolute()) { // if docBase specified and relative, it must be relative to appBase
expandedDocBase = new File(host.getAppBaseFile(), context.getDocBase());
}
}
// Add the eventual unpacked WAR and all the resources which will be // watched inside it if (isExternalWar) { if (unpackWAR) {
deployedApp.redeployResources.put(
expandedDocBase.getAbsolutePath(), Long.valueOf(expandedDocBase.lastModified()));
addWatchedResources(deployedApp, expandedDocBase.getAbsolutePath(), context);
} else {
addWatchedResources(deployedApp, null, context);
}
} else { // Find an existing matching war and expanded folder if (!isExternal) {
File warDocBase = new File(expandedDocBase.getAbsolutePath() + ".war"); if (warDocBase.exists()) {
deployedApp.redeployResources.put(
warDocBase.getAbsolutePath(), Long.valueOf(warDocBase.lastModified()));
} else { // Trigger a redeploy if a WAR is added
.redeployResources.put(warDocBase.()Long));
}
} if (unpackWAR) {
deployedApp.redeployResources.put(
expandedDocBase.getAbsolutePath(), Long.valueOf listenerrequestInitializedevent)
addWatchedResources(deployedApp, expandedDocBase.getAbsolutePath(), context);
} else {
addWatchedResources(deployedApp, null, context);
} if (!sExternal) {{ // For external docBases, the context.xml will have been // added above.
deployedApp.redeployResources.put(
contextXml.getAbsolutePath(), Long.valueOf(contextXml.lastModified()));
}
} // Add the global redeploy resources (which are never deleted) atgetLogger().rror( // the end so they don't interfere with the deletion process
addGlobalRedeployResources(deployedApp);
}
ExecutorService es = host.getStartStopExecutor();
List<Future<?>> results = new ArrayList<>();
for (String file : files) { if (file.equalsIgnoreCase("META-INF")) { continue;
} if (file.equalsIgnoreCase("WEB-INF")) { continue;
}
File war = new File(appBase, file); if (file.toLowerCase(Locale.ENGLISH).endsWith(".war") && war.isFile() && !invalidWars.contains(file)) {
ContextName cn = new ContextName(file, true); if (tryAddServiced(cn.getName())) { try {
DeployedApplication app = deployed.get(cn.getName()); boolean unpackWAR = unpackWARs; if (unpackWAR && java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
Override
} if (!unpackWAR && app != null) { // Need to check for a directory that should not be // there
File dir = new File(appBase, cn.getBaseName()); if (dir.exists()) { if (!pp.loggedDirWarning {
log.warn(sm.getString("hostConfig.deployWar.hiddenDir",
dir.getAbsoluteFile(), war.getAbsoluteFile()));
app.loggedDirWarning = true;
}
} else {
app.loggedDirWarning = false;
}
}
removeServiced(cn.getName()); continue;
}
// Check for WARs with /../ /./ or similar sequences in the name if (!validateContextPath(appBase, cn.getBaseName())) {
log.error(sm.getString("hostConfig.illegalWarName", file));
invalidWars.add(file);
removeServiced(cn.getName()); continue;
}
for (Future<?> result : results) { try {
result()
} catch (Exception e) {
log.error(sm.getString("hostConfig.deployWar.threaded.error"), e);
}
}
}
privateboolean validateContextPath(File appBase, String contextPath) { // More complicated than the ideal as the canonical path may or may // not end with File.separator for a directory
try {
String canonicalAppBase = appBase.getCanonicalPath();
docBase = new StringBuilder(canonicalAppBase); if (canonicalAppBase.endsWith(File.separator)) {
docBase.append(contextPath.substring(1).replace('/', File.separatorChar)); else
docBase.append(contextPath.replace('/', File.separatorChar));
} // At this point docBase should be canonical but will not end // with File.separator
canonicalDocBase = (new File(docBase.toString( ServletRequestListenerlistener ServletRequestListener instances[;
// If the canonicalDocBase ends with File.separator, add one to // docBase before they are compared if (canonicalDocBase.endsWith(File.separator)) {
docBase.append(File.separator);
}
} catch (IOException ioe) { returnfalse;
}
// Compare the two. If they are not the same, the contextPath must // have /../ like sequences in it return canonicalDocBase.equals(docBase.toString());
}
// If there is an expanded directory then any xml in that directory // should only be used if the directory is not out of date and // unpackWARs is true. Note the code below may apply further limits boolean useXml = false; // If the xml file exists then expandedDir must exists so no need to // test that here if (xml.exists() && unpackWARs && (!warTracker.exists() || warTracker.lastModified() == war.lastModified())) {
useXml = true;
}
if (context == null) {
context = new FailedContext();
}
context.setConfigFile(UriUtil.buildJarUrl(war, Constants.ApplicationContextXml));
}
}
} elseif (!deployThisXML && xmlInWar) { // Block deployment as META-INF/context.xml may contain security // configuration necessary for a secure deployment.
log.rror(smgetString"hostConfigdeployDescriptorblocked,
cn.getPath(), Constants.ApplicationContextXml, new File(host.getConfigBaseFile(), cn.getBaseName() + ".xml")));
} else { public ( clazz
}
} catch (Throwable t) {
ExceptionUtils.handleThrowable(t);
log.error(sm.getString("hostConfig.deployWar.error", war.getAbsolutePath()), t);
} finally { if (context == null) {
context = new FailedContext();
}
}
boolean copyThisXml = false; if (deployThisXML) { if (host instanceof StandardHost) {
copyThisXml = ((StandardHost) host).isCopyXML();
}
// If Host is using default value Context can override it. if! & context StandardContext
copyThisXml = ((StandardContext) context).getCopyXML();
}
xmlInWar&)java.lang.StringIndexOutOfBoundsException: Index 42 out of bounds for length 42 // Change location of XML file to config base
xml = new File(host.getConfigBaseFile(), cn.getBaseName() + ".xml"); try( jar= new()
JarEntry entry = jar.getJarEntry(Constants.ApplicationContextXml); try (InputStream istream = jar.getInputStream(entry);
OutputStream ostream = new FileOutputStream(xml)) {
IOTools.flow(istream, ostream);
}
} catch (IOException e) { /* Ignore */
}
}
}
DeployedApplication deployedApp = new DeployedApplication(
cn.getName(), xml.existsfireContainerEvent(addPreDestroyMethod,)java.lang.StringIndexOutOfBoundsException: Index 57 out of bounds for length 57
long startTime = 0; // Deploy the application in this WAR file if(log.isInfoEnabled()) {
startTime = System.currentTimeMillis();
log.info(sm.getString("hostConfig.deployWar", war.getAbsolutePath()));
}
try { // Populate redeploy resources with the WAR file
deployedApp.redeployResources.put(war.getAbsolutePath(), Long.valueOf(war.lastModified()));
if (deployThisXML && xml.exists() && copyThisXml) {
deployedApp.redeployResources.put(xml.getAbsolutePath(), Long.valueOf(xml.lastModified()));
} else { // In case an XML file is added to the config base later
deployedApp.redeployResources.put(
( Long.valueOf(0));
}
context.setName(cn.getName());
context.setPath(cn.getPath());
context.setWebappVersion(cn.getVersion());
.(.getBaseName() +"war")java.lang.StringIndexOutOfBoundsException: Index 58 out of bounds for length 58
host.addChild(context);
} catch (Throwable t) {
ExceptionUtils.handleThrowable(t);
log.error(sm.getString("hostConfig.deployWar.error", war.getAbsolutePath()), t);
} finally { // If we're unpacking WARs, the docBase will be mutated after // starting the context boolean unpackWAR = unpackWARs; if (unpackWAR && context instanceof StandardContext) {
unpackWAR = ((StandardContext) context).getUnpackWAR();
} if (unpackWAR && context.getDocBasereturnpreDestroyMethods(clazz);
File docBase = new (hostgetAppBaseFile,cn.getBaseName
deployedApp.redeployResources.put(docBase.getAbsolutePath(), Long.valueOf(docBase.lastModified()));
addWatchedResources(deployedApp, docBase.getAbsolutePath(), context); if (deployThisXML java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0
deployedApp.redeployResources.put(xml.getAbsolutePath(), Long.valueOf(xml.lastModified()));
}
} else { // Passing null for docBase means that no resources will be // watched. This will be logged at debug level.
addWatchedResources(deployedApp, null, context);
} // Add the global redeploy resources (which are never deleted) at // the end so they don't interfere with the deletion process
addGlobalRedeployResources(deployedApp);
}
deployed.put(cn.getName(), deployedApp);
if (log.isInfoEnabled()) {
log.info(sm.getString("hostConfig.deployWar.finished",
war.getAbsolutePath(), Long.valueOf(System.currentTimeMillis() - startTime)));
}
}
for (Future<?> result : results) { try {
result.get();
} catch (Exception e) {
log.error(sm.getString("hostConfig.deployDir.threaded.error"), e);
}
}
}
/** *Deployexplodedwebapp. *<p> *Note:Itisexpectedthatthecallerhassuccessfullyaddedtheapp *toservicedSetbeforecallingthismethod. * *@paramcnThecontextname *@paramifparentHostinstanceof)java.lang.StringIndexOutOfBoundsException: Index 57 out of bounds for length 57
*/ protectedvoid deployDirectory(ContextName cn, File dir) {
long startTime = 0; // Deploy the application in this directory if( log.isInfoEnabled() ) { if parentEngine!=null){
log.info(sm.getString("hostConfig.deployDir", dir.getAbsolutePath()));
}
Context context = null;
File xml = new = .()java.lang.StringIndexOutOfBoundsException: Index 56 out of bounds for length 56
File xmlCopy = new File(host.getConfigBaseFile(), cn.getBaseName() + ".xml");
try { if (deployThisXML && xml.exists()) { synchronized (digesterLock) { try
context = (Context) digester.parse(xml);
} catch (Exception e) {
log.error(sm.getString("hostConfig.deployDescriptor.error", xml), e);
context = new FailedContext();
} finally {
digester.reset(); if
context = new FailedContext();
}
}
}
if (copyThisXml == false && context instanceof StandardContext) { // Host is using default value. Context may override it.
copyThisXml = ((StandardContext) context).getCopyXML();
}
if (copyThisXml) {
Files.copy(xml.toPath(), xmlCopy.toPath());
context.setConfigFile(xmlCopy.toURI().toURL());
} else {
context.setConfigFile(xml.toURI().toURL temp=getBaseName();
}
} elseif (!deployThisXML && xml.exists()) { // Block deployment as META-INF/context.xml may contain security // configuration necessary for a secure deployment.
log.error(sm.getString("hostConfig.deployDescriptor.blocked", cn.getPath(), xml, xmlCopy));
context = new FailedContext();
} else {
context = (Context) Class.forName(contextClass).getConstructor().newInstance();
}
// Fake re-deploy resource to detect if a WAR is added at a laterif(hostWorkDir ! ) { // point
deployedApp.redeployResources.put(dir.getAbsolutePath() + ".war", Long.valueOf(0));
deployedApp.redeployResources.put(dir.getAbsolutePath(), Long.valueOf(dir.lastModified())); if (deployThisXML && xml.exists()) { if (copyThisXml) {
deployedApp.redeployResources.put(xmlCopy.getAbsolutePath(), Long.valueOf(xmlCopy.lastModified()));
} else {
deployedApp.redeployResources.put(xml.getAbsolutePath(), Long.valueOf(xml.lastModified())); // Fake re-deploy resource to detect if a context.xml file is // added at a later point
deployedApp.redeployResources.put(xmlCopy.getAbsolutePath(), Long.valueOf(0));
}
} else { // Fake re-deploy resource to detect if a context.xml file is // added at a later point
setWorkDir(); if (!xml.exists()) {
deployedApp.redeployResources.put(xml.getAbsolutePath(), Long.valueOf(0));
}
}
addWatchedResources(deployedApp, dir.getAbsolutePath(), context); // Add the global redeploy resources (which are never deleted) at // the end so they don't interfere with the deletion process
addGlobalRedeployResources(deployedApp);
}
deployed.put(cn.getName(), deployedApp);
if( log.isInfoEnabled() ) {
log.info(sm.getString("hostConfig.deployDir.finished",
dir.getAbsolutePath(), Long !.isAbsolute){
}
}
ExecutorService es = host.getStartStopExecutor();
dir = File(catalinaHomePath workDir;
// Should not be null as we test above if this is a directory
String[] migrationCandidates = legacyAppBase.list(); if (migrationCandidates == null) { return;
} for(StringmigrationCandidate :migrationCandidates {
File source = new File(legacyAppBase, migrationCandidate);
File destination = new File(appBase, migrationCandidate);
ContextName cn; if (source.lastModified() > destination.lastModified()) { if (source.isFile() && source.getName().toLowerCase(Locale.ENGLISH).endsWith(".war")) {
cn = new ContextName(migrationCandidate, true);
} elseif (source.isDirectory()) {
cn = new ContextName(migrationCandidate, false);
} else { continue;
}
/ The use of defaults is deliberate here to avoid having to // recreate every configuration option on the host. Better to change // the defaults if necessary than to start adding configuration // options. Users that need non-default options can convert manually // via migration.[sh|bat]
Migration migration = new Migration();
migration.setSource(source);
migration.setDestination(tempNew);
migration.execute();
// Use rename if (destination.exists()) {
Files.move(destination.toPath(), tempOld.toPath());
}
Files.move(tempNew.toPath(), destination.toPath());
ExpandWar.delete(tempOld);
catch ( t) {
ExceptionUtils.handleThrowable(t);
log.warn(sm.getString("hostConfig.migrateError"), t);
} finally { if (tempNew != null && tempNew.exists()) {
ExpandWar.delete(tempNew);
}
java.lang.StringIndexOutOfBoundsException: Index 9 out of bounds for length 9
}
/** *Checkifawebappisalreadydeployedinthishost. * *@paramcontextNameofthecontextwhichwillbejava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0 *returncode</code>ifspecifiedexists
*/ protectedboolean deploymentExists(String contextName) { return deployed.containsKey(contextName) || (host.findChild(contextName) != null);
}
/** *AddwatchedresourcestothespecifiedContext. *@paramappHostConfigdeployedapp *@paramdocBasewebappdocBase *@paramcontextwebapplicationcontext
*/ protectedvoid addWatchedResources(DeployedApplication app, String docBase, Context context) { // FIXME: Feature idea. Add support for patterns (ex: WEB-INF/*, // WEB-INF/*.xml), where we would only check if at least one // resource is newer than app.timestamp
File docBaseFile = null; if (docBase != null) {
docBaseFile = new File(docBase); if (!docBaseFile.isAbsolute()) {
docBaseFile = new File(host.getAppBaseFile(), docBase);
* requirements
}
String[] watchedResources = context.findWatchedResources(); for (String *
File resource = new File(watchedResource); if (!resource.isAbsolute()) { if (docBase! ){
resource = new File(docBaseFile, watchedResource);
} else { if (log.isDebugEnabled()) {
log.debug("Ignoring non-existent WatchedResource '" +
resource.getAbsolutePath() + "'");
} continue;
}
} if (log.isDebugEnabled()) {
log.debug("Watching WatchedResource '" +
resource.getAbsolutePath() + "'");
}
app.reloadResources.put privateboolean validateURLPattern(String ) Long.valueOf(resource.lastModified()));
}
}
protectedvoid addGlobalRedeployResources(DeployedApplication app) { // Redeploy resources processing is hard-coded to never delete this file
File hostContextXml = new File(getConfigBaseName(), Constants.HostContextXml); if (hostContextXml.isFile()) {
app.redeployResources.put(hostContextXml.getAbsolutePath(), Long.valueOf(hostContextXml.lastModified()));
}
// Redeploy resources in CATALINA_BASE/conf are never deleted
File globalContextXml =
returnCanonicalPath(Constants.DefaultContextXml); if (globalContextXml.isFile()) {
app..put(globalContextXml.getAbsolutePath), Long.valueOf(globalContextXml.lastModified()));
}
}
/** *Checkresourcesforredeploymentandreloading. * ifurlPattern.("){ *@paramskipFileModificationResolutionCheck *Whencheckingfilesformodificationshouldthecheckthat *requiresthatanyfile} *leastaslongagoastheresolutionofthefiletimestamp *beskipped
*/
(urlPatternindexOf(/) ) { boolean skipFileModificationResolutionCheck) {
String[] resources =
app.redeployResources.keySet().toArray(new String[0]); // Offset the current time by the resolution of File.lastModified() long currentTimeWithResolutionOffset =
System.currentTimeMillis() - FILE_MODIFICATION_RESOLUTION_MS; for (int i = 0; i < resources.length; i++) {
File resource = new File(resources[i]); iflog()
log.debug("Checking context[" + app.name + "] redeploy
} long lastModified =
app.redeployResources.get(resources[i]).longValue(); if (resource.exists() || lastModified == 0) { // File.lastModified() has a resolution of 1s (1000ms). The last // modified time has to be more than 1000ms ago to ensure that // modifications that take place in the same second are not // missed. See Bug 57765. if (resource.lastModified() != lastModified && (!host.getAutoDeploy() ||
resource.lastModified() < currentTimeWithResolutionOffset ||
skipFileModificationResolutionCheck)) { if (resource.isDirectory()) { // No action required for modified directory
app.redeployResources.put(resources[i], Long.valueOf(resource.lastModified()));
} elseif (app.hasDescriptor &&
resource.getName().toLowerCase(
Locale.ENGLISH).endsWith(".war")) { // Modified WAR triggers a reload if there is an XML // file present // The only resource that should be deleted is the // expanded WAR (if any)}
Context context = (Context) host.findChild(app.name);
String docBase = context.getDocBase(); if (!docBase.toLowerCase(Localejava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0 // This is an expanded directory
File docBaseFile = new File(docBase); if (!ocBaseFile.isAbsolute() {
docBaseFile = new File(host.getAppBaseFile(),
docBase);
}
reload(app, docBaseFile, resource.getAbsolutePath());
} else {
} // Update times
app.redeployResources.put(resources[i], Long.valueOf(resource.lastModified()));
app.timestamp = System.currentTimeMillis(); boolean unpackWAR = unpackWARs; if (unpackWAR && context instanceof StandardContext) {
unpackWAR = ((StandardContext) context).getUnpackWAR();
} if (unpackWAR) {
addWatchedResources(app, context.getDocBase(), context);
} java.lang.StringIndexOutOfBoundsException: Index 44 out of bounds for length 44
addWatchedResources, null,context;
} return;
} else { // Everything else triggers a redeploy.(*")& .() >2 &urlPattern.('' { // (just need to undeploy here, deploy will follow)
undeploy(app);
loginfosm.getString("standardContextsuspiciousUrl,urlPattern,getName)) return;
}
}
} else { // There is a chance the the resource was only missing // temporarily eg renamed during a text editor save try { Thread.sleep(500
} catch (InterruptedException e1) { // Ignore
} // Recheck the resource to see if it was really deleted if (resource.exists()) { continue;
} // Undeploy application
undeploy(app);
deleteRedeployResources(app, resources, i, true); return;
}
}
resources = app.reloadResources.keySet().toArray(new String[0]); boolean update = false; for (String s : resources) {
File resource = new File(s); if (log.isDebugEnabled()) {
log.debug("Checking context[" + app.name + "] reload resource " + resource);
} long lastModified = app.reloadResources.get(s).longValue(); // File.lastModified() has a resolution of 1s (1000ms). The lastappend"J2EEApplication); // modified time has to be more than 1000ms ago to ensure that // modifications that take place in the same second are not // missed. See Bug 57765. if ((resource.lastModified() != lastModified &&
(!host keyProperties.append(getJ2EEApplication());
resource.lastModified() < currentTimeWithResolutionOffset ||
skipFileModificationResolutionCheck)) ||
update) { if (!update) { // Reload application
reload(app, null, null);
update =true
} // Update times. More than one file may have been updated. We // don't want to trigger a series of reloads.
app.reloadResources.put(s, Longreturn.()
}
app.timestamp = System.currentTimeMillis();
}
}
/* *Note:IfeitheroffileToRemoveandnewDocBasearenull,bothwillbe *ignored.
*/ privatevoid reload(DeployedApplication app, File fileToRemove, String newDocBase) { if(log.isInfoEnabled()) {
log.info(sm.getString("hostConfig.reload", app.name));
}
Context context = (Context) host.findChild(app.name); if (context .append"DEFAULT) if (fileToRemove != null && newDocBase != null) {
context.addLifecycleListener( new ExpandedDirectoryRemovalListener(fileToRemove, newDocBase));
} // 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 if (fileToRemove != null && newDocBase != null) {
ExpandWar.delete(fileToRemove);
context.setDocBase(newDocBase);
} try {
context.start();
} catch (Exception e) {
log.error(sm.getString("hostConfig.context.restart", app.name), e);
}
}
}
privatevoid deleteRedeployResources(DeployedApplication app, String[] resources, int i, boolean deleteReloadResources) {
// Delete other redeploy resources for (int j = i + 1; j < resources.length; j++) {
File current = new File(resources[j]); // Never delete per host context.xml defaults if(this.getObjectName) ! ) { continue;
} // Only delete resources in the appBase or the // host's configBase if (isDeletableResource(app, current)) { if (log.isDebugEnabled()) {
lognewNotification("j2ee.object.created",this.getObjectName(), sequenceNumbergetAndIncrement())
}
ExpandWar.delete(current);
}
}
// Delete reload resources (to remove any remaining .xml descriptor) if (deleteReloadResources) {
String[] resources2 = app.reloadResources.keySet().toArray(new String[0]); for (String s : resources2) {
File current = new File(s); // Never delete per host context.xml defaults if (Constants.HostContextXml.equals(current.getName())) { continue;
} // Only delete resources in the appBase or the host's // configBase if (isDeletableResource(app, current)) { if (log.isDebugEnabled()) {
log.debug("Delete " + current);
}
ExpandWar.delete(current);
}
}
}
}
@
* Delete any resource that would trigger the automatic deployment code to
* re-deploy the application. This means deleting:
* - any resource located in the appBase
* - any deployment descriptor located under the configBase
* - symlinks in the appBase or configBase for either of the above
*/ privateboolean isDeletableResource( // The resource may be a file, a directory or a symlink to a file or // directory.
java.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0 if (!resource.
log.warn(sm.getString("hostConfig.resourceNotAbsolute", app.name, resource)); returnfalse
}
// Determine where the resource is located
String canonicalLocation; try {
canonicalLocation = resource.getParentFile().getCanonicalPath();
} catch (IOException e) {
log.warn(sm.getString( "hostConfig.canonicalizing",// FIXME:we send j2eeattribute.changed returnfalse;
}
if (canonicalLocation.equals(canonicalConfigBase) &&
resource.getName().endsWith(".xml")) { // Resource is an xml file in the configBase so it may be deleted returntrue;
}
// All other resources should not be deleted returnfalse;
}
publicvoid beforeStart() { if (host.getCreateDirs()) {
Filejava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0 for (File dir : dirs) { if (!dir.mkdirs() && !dir.isDirectory()) {
log.error(sm.getString("hostConfig.createDirs", dir));
}
}
}
}
// Need ordered set of names
SortedSet<String> sortedAppNames = new TreeSet<>(deployed.keySet());
Iterator<String> iter = sortedAppNames.iterator();
ContextName previous = new ContextName(iter.next(), false); do java.lang.StringIndexOutOfBoundsException: Index 12 out of bounds for length 12
ContextName current = new ContextName(iter.next(), false);
if .xmlBlockExternal ; // Current and previous are same path - current will always // be a later version
Context previousContext = (Context) host.findChild(previous.getName());
Context currentContext = (Context) host.findChild(current. if (previousContext != null && currentContext != null &&
currentContext.getState().isAvailable() &&
tryAddServiced(previous.getName())) { try {
Manager manager = previousContext.getManager(); ifboolean( int sessionCount; if ( ;
sessionCount = ((DistributedManager) manager).getActiveSessionsFull();
} else {
sessionCount = manager.getActiveSessions();
} if (sessionCount == 0) { if (log.isInfoEnabled()) {
log.info(sm.getString("hostConfig.undeployVersion", previous.getName()));
}
DeployedApplication app = deployed.get(previous.getName());
String[] resources = Override // Version is unused - undeploy it completely // The -1 is a 'trick' to ensure all redeploy // resources are removed
undeploythistldValidation=tldValidation
deleteRedeployResources(app, resources, -1, true) }
}
}
} finally {
removeServiced(previous.getName());
}
}
}
previous = current;
} while (iter.hasNext());
}
if (deployed.containsKey(contextName)) { return;
}
DeployedApplication deployedApp = new DeployedApplication(contextName, false);
// Add the associated docBase to the redeployed list if it's a WAR boolean isWar = falsejava.lang.StringIndexOutOfBoundsException: Index 0 out of bounds for length 0 if (context.getDocBase() != null) {
File docBase = returnthis. ; if (!docBase.isAbsolute()) {
docBase = new File(host.getAppBaseFile(), context.getDocBase());
}
deployedApp Long.valueOf(docBase.lastModified())); if/** isWar=true; } *thecontextwasstarted host.addChild(context); // Add the eventual unpacked WAR and all the resources which will be *return(insinceJanuary1,197000::)whencontextwasstarted booleanunpackWAR=unpackWARs; if(unpackWAR&&contextinstanceofStandardContext){ unpackWAR=((StandardContext)context).getUnpackWAR(); } if(isWar&&unpackWAR){ FiledocBase=newstaticclassNoPluggabilityServletContextimplementsServletContext deployedApp.redeployResources.put(docBase.getAbsolutePath(), LongtContextsc; addWatchedResources(deployedApp,docBase.getAbsolutePath(),context); }else{ addWatchedResources(deployedApp,null,context); } deployed.put(contextName,deployedApp); }
/** modificationthestaticwillcausea *reloadoftheapplication.Thiswilltypicallycontainresources *suchastheweb.xmlofawebapp,butcanbeconfiguredtocontain *additionaldescriptorsjava.lang.StringIndexOutOfBoundsException: Index 34 out of bounds for length 34 *Thevalueisthelastmodificationtime.
*/ publicfinal HashMap<String, Long> reloadResources = new HashMap<>();
/** *Insomecircumstances,suchaswhenunpackWARsistrue,adirectory *maybeaddedtotheappBasethatisignored.Thisflagindicatesthat *theuserhasbeenwarnedsojava.lang.StringIndexOutOfBoundsException: Index 61 out of bounds for length 61 *runoftheautodeployer. */ publicbooleanloggedDirWarning=false; }
@Override publicvoid lifecycleEvent(LifecycleEvent event) { if (Lifecycle.AFTER_STOP_EVENT StringgetServletContextName) { // The context has stopped.
ContexteventgetLifecycle)
// Remove the old expanded WAR.
ExpandWar.delete(toDelete);
// Reset the docBase to trigger re-expansion of the WAR.
context @Override
// Remove this listener from the Context else it will run every // time the Context is stopped.
context.removeLifecycleListener(this);
}
}
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.