zoukankan      html  css  js  c++  java
  • jsp <%! %> 与 <% %> 区别

    <body>
    <%!

    //1、可定义方法
    public String outMethod(){
    return "outMethod";
    }
    //2、可定义static方法
    public static String outStaticMethod(){
    return "outStaticMethod";
    }
    //3、可定义static属性
    public static int count = 0;

    //4、不可以使用out对象
    %>

    <%
    //1、不可定义方法
    //2、不可定义static方法
    //3、不可定义static属性

    //可以使用out对象
    out.print(outMethod());
    out.print("<br>");
    out.print(outStaticMethod());
    out.print("<br>");
    out.print(count);
    %>
    </body>

    经Tomcat编译后,生成的java文件如下:

    package org.apache.jsp;

    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.jsp.*;

    public final class test_jsp extends org.apache.jasper.runtime.HttpJspBase
    implements org.apache.jasper.runtime.JspSourceDependent {

    //1、可定义方法
    public String outMethod(){
    return "outMethod";
    }
    //2、可定义static方法
    public static String outStaticMethod(){
    return "outStaticMethod";
    }
    //3、可定义static属性
    public static int count = 0;

    //4、不可以使用out对象

    private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();

    private static java.util.List _jspx_dependants;

    private javax.el.ExpressionFactory _el_expressionfactory;
    private org.apache.AnnotationProcessor _jsp_annotationprocessor;

    public Object getDependants() {
    return _jspx_dependants;
    }

    public void _jspInit() {
    _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
    _jsp_annotationprocessor = (org.apache.AnnotationProcessor) getServletConfig().getServletContext().getAttribute(org.apache.AnnotationProcessor.class.getName());
    }

    public void _jspDestroy() {
    }

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

    PageContext pageContext = null;
    HttpSession session = null;
    ServletContext application = null;
    ServletConfig config = null;
    JspWriter out = null;
    Object page = this;
    JspWriter _jspx_out = null;
    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(" ");
    out.write("<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> ");
    out.write("<html> ");
    out.write("<head> ");
    out.write("<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> ");
    out.write("<title>Insert title here</title> ");
    out.write("</head> ");
    out.write("<body> ");
    out.write(" ");
    out.write(" ");

    //1、不可定义方法
    //2、不可定义static方法
    //3、不可定义static属性

    //可以使用out对象
    out.print(outMethod());
    out.print("<br>");
    out.print(outStaticMethod());
    out.print("<br>");
    out.print(count);

    out.write(" ");
    out.write("</body> ");
    out.write("</html>");
    } catch (Throwable t) {
    if (!(t instanceof SkipPageException)){
    out = _jspx_out;
    if (out != null && out.getBufferSize() != 0)
    try { out.clearBuffer(); } catch (java.io.IOException e) {}
    if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
    }
    } finally {
    _jspxFactory.releasePageContext(_jspx_page_context);
    }
    }
    }

    小结:在生成的java文件中,我们可以看到,<%! %>中的代码对应于java类文件的成员方法、静态方法,静态变量,而<%  %>中的代码对应于java类文件的_jspService方法中的代码(_jspService对应于servlet中的service方法),这也就是为什么在<% %>中不能声明方法、静态变量的原因了(方法中是不可以再创建方法的)。

  • 相关阅读:
    安卓触摸事件探究
    android关于canvas,path,paint非常好的讲解
    android的Shader
    android中view的生命周期
    JAVA的Random类(转)
    lniux 64位导致adb无法运行解决方案
    [转]Android中attrs.xml文件的使用详解
    FlowLayout
    大数据平台架构技术选型与场景运用(转)
    mysql--java类型对应表
  • 原文地址:https://www.cnblogs.com/pan1308/p/4343542.html
Copyright © 2011-2022 走看看