tomcat中哪里可以检查servlet异常
一个非常简单的问题(请原谅) - 如果 servlet 抛出 ServletException 并且它在 Tomcat 中运行 - 我在哪里可以检查异常详细信息?试图查看日志,但什么也没有。我可能错过了一些非常明显的事情。我不使用(并且在现阶段不打算使用)任何日志库(例如log4j),只是抛出异常并尝试查看它(如果可能)。
欣赏!
A very simple question (pardon) - if a servlet throws ServletException and it runs in Tomcat - where can I inspect the exception details? Tried to look under logs but nothing is there. I probably miss something very obvious. I do not use (and at this stage don't plan to use) any log library (such as log4j), just throwing an exception and trying to see it if possible.
Appreciate!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视情况而定。它们默认记录到
Tomcat/logs/[主机名].[时间戳].log
。但是,如果您从 Eclipse 等 IDE 内部运行 Tomcat,那么它将接管日志记录,并且最终会出现在 IDE 控制台中,而不会写入日志文件。Depends. They're by default logged to
Tomcat/logs/[hostname].[timestamp].log
. However, if you run Tomcat from inside an IDE like Eclipse, then it will take over the logging and it'll end up in the IDE console without being written to log file.