cancel
Showing results for 
Search instead for 
Did you mean: 

在SAP/EP中做 JAVA开发,如何查看 “错误日志”?

Former Member
0 Kudos

我在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 去查看更详细的异常信息?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

如果是在PORTAL的话,试试看去 <host>:<port>/nwa

选择 Monitoring -> Log and Traces

我通常都在这里看 ERROR LOG 的,希望能够帮到你

Answers (1)

Answers (1)

Former Member
0 Kudos

谢谢