httpjsppage.java
来自「Java 的servlets和jsp的软件开发包。支持jsp1.0以及servl」· Java 代码 · 共 24 行
JAVA
24 行
/**
* 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;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?