<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=shift_jis">
<%@ page contentType= "text/html; charset=shift_jis" %>
<%@ page isErrorPage="true" %>
<%@ page import="java.io.PrintWriter, com.fujitsu.uji.ApplicationProfile, com.fujitsu.uji.log.*" %>
</HEAD>
<BODY>
<PRE>
<%
if(exception != null) {
// HTML画面に出力する
Throwable ex;
// 注意:HTML画面への出力はセキュリティ上の問題を内包しています。
// 以下のソースはデバッグ時のみ利用してください。
/*
PrintWriter writer = new PrintWriter(out);
ex = exception;
while(ex instanceof NestedException) {
String msg = ex.getClass().getName() + " : " + ex.getMessage();
msg = msg.replace('<','[');
msg = msg.replace('>',']');
writer.println(msg);
ex = ((NestedException)ex).getRootCause();
}
ex.printStackTrace(writer);
*/
// アプリケーションログに出力する
ApplicationProfile ap = (ApplicationProfile)application.getAttribute(ApplicationProfile.APPLICATIONKEY);
if(ap != null) {
LogComposer lc = ap.getLogComposer();
if(lc != null) {
ex = exception;
while(ex instanceof NestedException) {
String msg = ex.getClass().getName() + " : " + ex.getMessage();
msg = msg.replace('<','[');
msg = msg.replace('>',']');
lc.println(msg);
ex = ((NestedException)ex).getRootCause();
}
lc.printStackTrace(ex);
}
}
}
%>
</PRE>
</BODY>
</HTML>
|