jsp中对应的Servlet类中_jspservice()方法对应的源代码

jsp中对应的Servlet类中_jspservice()方法对应的源代码
jsp中对应的Servlet类中_jspservice()方法对应的源代码
大致在第79行左右,用vscode打开的话
参考以下代码可知截图的知识
java源代码

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>task2_3</title>
</head>
<body>
<!-- <h1>Hello JSP!</h1> -->
<%
    int n = (int)(Math.random()*4+3);
    for(int i=1;i<=n;i++){
%>
    <h<%=i %>>Hello JSP!</h<%=i %>>        
<%
    }
%>


</body>
</html>

源代码的演示效果是
jsp中对应的Servlet类中_jspservice()方法对应的源代码

servlet类中的__jspService()方法代码

public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response)
        throws java.io.IOException, javax.servlet.ServletException {

final java.lang.String _jspx_method = request.getMethod();
if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method) && !javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) {
response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET POST or HEAD");
return;
}

    final javax.servlet.jsp.PageContext pageContext;
    javax.servlet.http.HttpSession session = null;
    final javax.servlet.ServletContext application;
    final javax.servlet.ServletConfig config;
    javax.servlet.jsp.JspWriter out = null;
    final java.lang.Object page = this;
    javax.servlet.jsp.JspWriter _jspx_out = null;
    javax.servlet.jsp.PageContext _jspx_page_context = null;


    try {
      response.setContentType("text/html; charset=UTF-8");
      pageContext = _jspxFactory.getPageContext(this, request, response,
                  null, true, 8192, true);
      _jspx_page_context = pageContext;
      application = pageContext.getServletContext();
      config = pageContext.getServletConfig();
      session = pageContext.getSession();
      out = pageContext.getOut();
      _jspx_out = out;

      out.write("\r\n");
      out.write("<!DOCTYPE html>\r\n");
      out.write("<html>\r\n");
      out.write("<head>\r\n");
      out.write("<meta charset=\"UTF-8\">\r\n");
      out.write("<title>task2_3</title>\r\n");
      out.write("</head>\r\n");
      out.write("<body>\r\n");
      out.write("<!-- <h1>Hello JSP!</h1> -->\r\n");

    int n = (int)(Math.random()*4+3);
    for(int i=1;i<=n;i++){

      out.write("\r\n");
      out.write("\t<h");
      out.print(i );
      out.write(">Hello JSP!</h");
      out.print(i );
      out.write(">\t\t\r\n");

    }

      out.write("\r\n");
      out.write("\r\n");
      out.write("\r\n");
      out.write("</body>\r\n");
      out.write("</html>");
    } catch (java.lang.Throwable t) {
      if (!(t instanceof javax.servlet.jsp.SkipPageException)){
        out = _jspx_out;
        if (out != null && out.getBufferSize() != 0)
          try {
            if (response.isCommitted()) {
              out.flush();
            } else {
              out.clearBuffer();
            }
          } catch (java.io.IOException e) {}
        if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
        else throw new ServletException(t);
      }
    } finally {
      _jspxFactory.releasePageContext(_jspx_page_context);
    }
上一篇:《数据库原理与应用(第3版)》——第2章 数据模型与数据库系统结构


下一篇:手把手教你使用ECharts绘制可视化图表