次のようにServletExceptionをスローするWebsphereApplicationServer7にデプロイされたコードを使用しています。
if (BaseConvertors.isEmpty(email)) {
throw new ServletException("Invalid url access - not authenticated.");
}
email
ですString
。
Eclipseでサーブレットをデバッグすると、コンソールにスタックトレースが出力されます。ただし、ファイルには例外の表示はありませんSystemOut.log
。このコードはdoGet
、例外自体をスローするメソッド内にあります。
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {}
SystemOut.log
ログインファイルに例外を取得するにはどうすればよいですか?