本文整理了Java中org.eclipse.jetty.webapp.WebAppContext.setPersistTempDirectory()
方法的一些代码示例,展示了WebAppContext.setPersistTempDirectory()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WebAppContext.setPersistTempDirectory()
方法的具体详情如下:
包路径:org.eclipse.jetty.webapp.WebAppContext
类名称:WebAppContext
方法名:setPersistTempDirectory
[英]If true the temp directory for this webapp will be kept when the webapp stops. Otherwise, it will be deleted.
[中]如果为true,则当webapp停止时,将保留此webapp的临时目录。否则,它将被删除。
代码示例来源:origin: org.eclipse.jetty/jetty-webapp
if (work.exists() && work.isDirectory() && work.canWrite())
context.setPersistTempDirectory(true);
makeTempDirectory(work,context);
return;
代码示例来源:origin: org.simplericity.jettyconsole/jetty-console-core
webapp.setPersistTempDirectory(true);
代码示例来源:origin: jenkinsci/winstone
if (work.exists() && work.isDirectory() && work.canWrite())
context.setPersistTempDirectory(true);
makeTempDirectory(work,context);
return;
内容来源于网络,如有侵权,请联系作者删除!