zoukankan      html  css  js  c++  java
  • JSP自定义标签rtexprvalue属性


    JSP自定义标签rtexprvalue属性
    分类: J2EE 2009-03-26 16:25 3129人阅读 评论(1) 收藏 举报
    jspquerysql

    其实以前也有写过自定义标签, 但是没有注意到过<rtexprvalue>的用法, 最近这几天又用上自定义标签了, 突然发现<rtexprvalue>的用法是有讲究的.



    rtexprvalue的全称是 Run-time Expression Value, 它用于表示是否可以使用JSP表达式.

    当在<attribute>标签里指定<rtexprvalue>true</rtexprvalue>时, 表示该自定义标签的某属性的值可以直接指定或者通过动态计算指定,

    example as follow:

    <sql:query var="result" >
        select * from mytable order by nameid
    </sql:query>
    <%request.setAttribute("nameid", "2"); %>
    <myTag:cupSize cupSize="1" cupSizes="${result}"></myTag:cupSize>
    <myTag:cupSize cupSize="${nameid}" cupSizes="${result}"></myTag:cupSize>


    当在<attribute>标签里指定<rtexprvalue>false</rtexprvalue>时, 表示该自定义标签的某属性的值只能直接指定,  example as follow:
    <myTag:cupSize cupSize="1" cupSizes="${result}"></myTag:cupSize>
  • 相关阅读:
    401. Binary Watch
    46. Permutations
    61. Rotate List
    142. Linked List Cycle II
    86. Partition List
    234. Palindrome Linked List
    19. Remove Nth Node From End of List
    141. Linked List Cycle
    524. Longest Word in Dictionary through Deleting
    android ListView详解
  • 原文地址:https://www.cnblogs.com/iamconan/p/7383453.html
Copyright © 2011-2022 走看看