为什么tomcat在关闭并重新启动时需要一些时间来识别该文件夹?

发布于 2024-08-11 16:21:55 字数 208 浏览 7 评论 0原文

我处理一个文件夹,tomcat 识别该文件夹。但是,当我关闭并重新启动 tomcat 时,需要一些时间才能识别同一文件夹。有人能告诉我为什么吗?

我在 catalina.out 中看到错误报告。它给出了错误列表,但最后说 十一月 22, 2009 2:08:58 PM org.apache.catalina.startup.Catalina 启动 信息:服务器在 1403 毫秒内启动

I work on a folder and tomcat recognizes the folder. But, when I shutdown and restart tomcat it is taking time to recognize the same folder. Can anybody tell me why?

I see the error report in catalina.out. It gives a list of errors but finally says
Nov 22, 2009 2:08:58 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 1403 ms

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小…红帽 2024-08-18 16:21:55

我按“文件夹”是你的网络应用程序。我需要一些时间来启动你的 wabapp,因为 tomcat 必须加载该应用程序的配置文件。另外,如果您的 Web 应用程序包含 JSP 页面,这些页面很可能会在重新启动时重新编译。

I pressume 'folder' is your webapp. I takes time starting your wabapp, because tomcat has to load.parse configuration files for that app. Additionaly if your webapp contains JSP pages those get most likely recompiled on the restart.

一个人的旅程 2024-08-18 16:21:55

我猜您指的是应用程序部署时间。最耗时的过程是扫描 jar 中的 TLD。如果您不使用 JSP 标签,则可以通过将其添加到上下文来加快部署时间,

  <Context processTlds="false" ... />

I guess you are referring to application deployment time. The most time consuming process is to scan the jars for TLDs. If you don't use JSP tags, you can speed up the deployment time by adding this to your context,

  <Context processTlds="false" ... />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文