⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 httpjsppage.java

📁 Java Servlet Development Kit 2.1 在JBuilder的帮助下
💻 JAVA
字号:
/**
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -