我在EP上做Servlet 和 JSP 开发。
做了一个hello world程序,然后打包成 .ear 布置到了 J2EE Engine 中。
结果发生 500 错误。
其实代码很简单,就是一个hello world 的 jsp 文件。代码如下:
<%
String msg = "hello world";
out.println(msg);
%>
布署后运行,出现如下错误提示:
Application error occurred during the request procession.
Details: com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException:
Error compiling [/index.jsp] of alias [WebHelloWorld] of J2EE application [sap.com/AppHelloWorld].
Exception id: [001A64244EA60076000000E8000016B90004681B758A1DDD]
错误提示中,给出了一个 Exception id
我想问的是,如何根据这个Exception id 去查看更详细的异常信息?