?? httpjsppage.java
字號(hào):
/**
* This is the interface that a JSP processor-generated class for the
* HTTP protocol must satisfy.
*/
package javax.servlet.jsp;
import java.io.IOException;
import javax.servlet.*;
import javax.servlet.http.*;
public interface HttpJspPage extends JSPPage {
/**
* jspPageService() corresponds to the body of the JSP page. This
* method is defined automatically by the JSP processor and should
* never be defined by the JSP author.
*/
void _jspService(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -