我可以在JSP中調試到內部類嗎?在Intellij中調試JSP中的內部類Idea
我的應用程序服務器是tomcat,我正在使用Intellij Idea。
jsp中的正常斷點可以,但InnerClass中的斷點不起作用。
在我的測試JSP代碼:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ page import="java.io.IOException" %>
<%
new InnerClass().method_in_inner_class(out);
%>
<%!
class InnerClass {
void method_in_inner_class(JspWriter out) throws IOException {
//set breakpoint under this line
out.print("test1");
}
}
%>
在上述JSP文件,我設置斷點 「的out.print(」 測試1 「);」 但它不會中斷。
我該如何調試到InnerClass? 謝謝。
」只有斷點1可以中斷...「 - 這是因爲在這個例子中,你永遠不會調用斷點2的代碼。 –
沒有」method_in_inner_class「的代碼調用」method_in_jsp_class「嗎? – vikingsteve
您可以將我的測試代碼複製到您的想法環境中,並嘗試進行調試。謝謝。 – guopi