was7 抛出 servletException 未记录在 SystemOut.log 文件中

发布于 2024-12-20 05:10:54 字数 581 浏览 0 评论 0原文

我正在使用部署在 Websphere Application Server 7 上的代码,该代码抛出 ServletException,如下所示:

if (BaseConvertors.isEmpty(email)) {
    throw new ServletException("Invalid url access - not authenticated.");
}

email 是一个 String

当我在 Eclipse 中调试 servlet 时,我看到控制台中打印出堆栈跟踪。但 SystemOut.log 文件中没有任何异常指示。此代码位于 doGet 方法内部,该方法本身会引发异常。

protected void doGet(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {}

如何将异常记录到 SystemOut.log 文件中?

I am working with code deployed on Websphere Application Server 7 that throws a ServletException as follows:

if (BaseConvertors.isEmpty(email)) {
    throw new ServletException("Invalid url access - not authenticated.");
}

email is a String.

When I debug the servlet in Eclipse, I see the stack trace printed out in the console. But there is no indication of the exception in the SystemOut.log file. This code is inside the doGet method which throws the exception itself.

protected void doGet(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {}

How do I get the exception to be logged in SystemOut.log file?

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

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

发布评论

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

评论(1

埋情葬爱 2024-12-27 05:10:54

错误被记录到 SystemError.log 中……呃!

The error gets logged into SystemError.log ... duh !

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