美文网首页
jsp的注释声明表达式

jsp的注释声明表达式

作者: SmallTwo | 来源:发表于2017-10-05 22:10 被阅读14次

    1 <%%>

        <% 
            
            Date date = new Date();
            System.out.print(date);
            
            String path = request.getContextPath();
            System.out.print(path);
        %>
    

    表达式中的内容会被放在servlet类中的service方法中

    1. <%=%>
    <%= path %>
        <%= date %>
        <%= getServletContext().getRealPath("index.jsp") %>
    

    作为out.print()的参数传递

    1. <%-- --%> jsp注释
    2. <%!%>声明类的属性或者方法

    相关文章

      网友评论

          本文标题:jsp的注释声明表达式

          本文链接:https://www.haomeiwen.com/subject/cazhyxtx.html