为什么tomcat在关闭并重新启动时需要一些时间来识别该文件夹?
我处理一个文件夹,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我按“文件夹”是你的网络应用程序。我需要一些时间来启动你的 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.
我猜您指的是应用程序部署时间。最耗时的过程是扫描 jar 中的 TLD。如果您不使用 JSP 标签,则可以通过将其添加到上下文来加快部署时间,
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,