我在Ubuntu AWS上托管了一个java Web应用程序。我正在使用Apache Tomcat v7
来部署Java应用程序。
当我正在进行繁重的处理(阅读大型xlsx文件并从中制作JSON)时,应用程序会在浏览器上返回Internal Server Error
。
我想调查错误是什么,所以我打开了conf/catalina.out
应用程序的输出,这是我得到的一部分:
- Sync is not success yet.
Done importing one batch!
Importing a batch:49000
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
Done importing one batch!
Importing a batch:49000
- Sync is not success yet.
- Sync is not success yet.
- Sync is not success yet.
输出没有任何问题,这是我所期望的,除了它没有显示任何错误,程序没有完成输出。
我在想什么,可能是我在某个地方捕捉异常。我将不得不检查它,但我很确定我正在打印错误。
答案 0 :(得分:0)
原因是,catalina.out
仍然在更新,服务器仍在追加有关工作的信息,很长一段时间工作已经粉碎。所以我看不出崩溃的真正原因。