spring.tld
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:7k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
  3. <taglib>
  4. <tlib-version>1.1.2</tlib-version>
  5. <jsp-version>1.2</jsp-version>
  6. <short-name>Spring</short-name>
  7. <uri>http://www.springframework.org/tags</uri>
  8. <description>Spring Framework JSP Tag Library. Authors: Rod Johnson, Juergen Hoeller</description>
  9. <tag>
  10. <name>htmlEscape</name>
  11. <tag-class>org.springframework.web.servlet.tags.HtmlEscapeTag</tag-class>
  12. <body-content>JSP</body-content>
  13. <description>
  14. Sets default HTML escape value for the current page.
  15. Overrides a "defaultHtmlEscape" context-param in web.xml, if any.
  16. </description>
  17. <attribute>
  18. <name>defaultHtmlEscape</name>
  19. <required>true</required>
  20. <rtexprvalue>true</rtexprvalue>
  21. </attribute>
  22. </tag>
  23. <tag>
  24. <name>escapeBody</name>
  25. <tag-class>org.springframework.web.servlet.tags.EscapeBodyTag</tag-class>
  26. <body-content>JSP</body-content>
  27. <description>
  28. Escapes its enclosed body content, applying HTML escaping and/or JavaScript escaping.
  29. The HTML escaping flag participates in a page-wide or application-wide setting
  30. (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
  31. </description>
  32. <attribute>
  33. <name>htmlEscape</name>
  34. <required>false</required>
  35. <rtexprvalue>true</rtexprvalue>
  36. </attribute>
  37. <attribute>
  38. <name>javaScriptEscape</name>
  39. <required>false</required>
  40. <rtexprvalue>true</rtexprvalue>
  41. </attribute>
  42. </tag>
  43. <tag>
  44. <name>message</name>
  45. <tag-class>org.springframework.web.servlet.tags.MessageTag</tag-class>
  46. <body-content>JSP</body-content>
  47. <description>
  48. Retrieves the message with the given code, or text if code isn't resolvable.
  49. The HTML escaping flag participates in a page-wide or application-wide setting
  50. (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
  51. </description>
  52. <attribute>
  53. <name>message</name>
  54. <required>false</required>
  55. <rtexprvalue>true</rtexprvalue>
  56. </attribute>
  57. <attribute>
  58. <name>code</name>
  59. <required>false</required>
  60. <rtexprvalue>true</rtexprvalue>
  61. </attribute>
  62. <attribute>
  63. <name>arguments</name>
  64. <required>false</required>
  65. <rtexprvalue>true</rtexprvalue>
  66. </attribute>
  67. <attribute>
  68. <name>text</name>
  69. <required>false</required>
  70. <rtexprvalue>true</rtexprvalue>
  71. </attribute>
  72. <attribute>
  73. <name>var</name>
  74. <required>false</required>
  75. <rtexprvalue>true</rtexprvalue>
  76. </attribute>
  77. <attribute>
  78. <name>scope</name>
  79. <required>false</required>
  80. <rtexprvalue>true</rtexprvalue>
  81. </attribute>
  82. <attribute>
  83. <name>htmlEscape</name>
  84. <required>false</required>
  85. <rtexprvalue>true</rtexprvalue>
  86. </attribute>
  87. <attribute>
  88. <name>javaScriptEscape</name>
  89. <required>false</required>
  90. <rtexprvalue>true</rtexprvalue>
  91. </attribute>
  92. </tag>
  93. <tag>
  94. <name>theme</name>
  95. <tag-class>org.springframework.web.servlet.tags.ThemeTag</tag-class>
  96. <body-content>JSP</body-content>
  97. <description>
  98. Retrieves the theme message with the given code, or text if code isn't resolvable.
  99. The HTML escaping flag participates in a page-wide or application-wide setting
  100. (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
  101. </description>
  102. <attribute>
  103. <name>code</name>
  104. <required>false</required>
  105. <rtexprvalue>true</rtexprvalue>
  106. </attribute>
  107. <attribute>
  108. <name>arguments</name>
  109. <required>false</required>
  110. <rtexprvalue>true</rtexprvalue>
  111. </attribute>
  112. <attribute>
  113. <name>text</name>
  114. <required>false</required>
  115. <rtexprvalue>true</rtexprvalue>
  116. </attribute>
  117. <attribute>
  118. <name>var</name>
  119. <required>false</required>
  120. <rtexprvalue>true</rtexprvalue>
  121. </attribute>
  122. <attribute>
  123. <name>scope</name>
  124. <required>false</required>
  125. <rtexprvalue>true</rtexprvalue>
  126. </attribute>
  127. <attribute>
  128. <name>htmlEscape</name>
  129. <required>false</required>
  130. <rtexprvalue>true</rtexprvalue>
  131. </attribute>
  132. <attribute>
  133. <name>javaScriptEscape</name>
  134. <required>false</required>
  135. <rtexprvalue>true</rtexprvalue>
  136. </attribute>
  137. </tag>
  138. <tag>
  139. <name>hasBindErrors</name>
  140. <tag-class>org.springframework.web.servlet.tags.BindErrorsTag</tag-class>
  141. <body-content>JSP</body-content>
  142. <description>
  143. Provides Errors instance in case of bind errors.
  144. The HTML escaping flag participates in a page-wide or application-wide setting
  145. (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
  146. </description>
  147. <variable>
  148. <name-given>errors</name-given>
  149. <variable-class>org.springframework.validation.Errors</variable-class>
  150. </variable>
  151. <attribute>
  152. <name>name</name>
  153. <required>true</required>
  154. <rtexprvalue>true</rtexprvalue>
  155. </attribute>
  156. <attribute>
  157. <name>htmlEscape</name>
  158. <required>false</required>
  159. <rtexprvalue>true</rtexprvalue>
  160. </attribute>
  161. </tag>
  162. <tag>
  163. <name>nestedPath</name>
  164. <tag-class>org.springframework.web.servlet.tags.NestedPathTag</tag-class>
  165. <body-content>JSP</body-content>
  166. <description>
  167. Sets a nested path to be used by the bind tag's path.
  168. </description>
  169. <variable>
  170. <name-given>nestedPath</name-given>
  171. <variable-class>java.lang.String</variable-class>
  172. </variable>
  173. <attribute>
  174. <name>path</name>
  175. <required>true</required>
  176. <rtexprvalue>true</rtexprvalue>
  177. </attribute>
  178. </tag>
  179. <tag>
  180. <name>bind</name>
  181. <tag-class>org.springframework.web.servlet.tags.BindTag</tag-class>
  182. <body-content>JSP</body-content>
  183. <description>
  184. Provides BindStatus object for the given bind path.
  185. The HTML escaping flag participates in a page-wide or application-wide setting
  186. (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
  187. </description>
  188. <variable>
  189. <name-given>status</name-given>
  190. <variable-class>org.springframework.web.servlet.support.BindStatus</variable-class>
  191. </variable>
  192. <attribute>
  193. <name>path</name>
  194. <required>true</required>
  195. <rtexprvalue>true</rtexprvalue>
  196. </attribute>
  197. <attribute>
  198. <name>ignoreNestedPath</name>
  199. <required>false</required>
  200. <rtexprvalue>true</rtexprvalue>
  201. </attribute>
  202. <attribute>
  203. <name>htmlEscape</name>
  204. <required>false</required>
  205. <rtexprvalue>true</rtexprvalue>
  206. </attribute>
  207. </tag>
  208. <tag>
  209. <name>transform</name>
  210. <tag-class>org.springframework.web.servlet.tags.TransformTag</tag-class>
  211. <body-content>JSP</body-content>
  212. <description>
  213. Provides transformation of variables to Strings, using an appropriate
  214. custom PropertyEditor from BindTag (can only be used inside BindTag).
  215. The HTML escaping flag participates in a page-wide or application-wide setting
  216. (i.e. by HtmlEscapeTag or a "defaultHtmlEscape" context-param in web.xml).
  217. </description>
  218. <attribute>
  219. <name>value</name>
  220. <required>true</required>
  221. <rtexprvalue>true</rtexprvalue>
  222. </attribute>
  223. <attribute>
  224. <name>var</name>
  225. <required>false</required>
  226. <rtexprvalue>true</rtexprvalue>
  227. </attribute>
  228. <attribute>
  229. <name>scope</name>
  230. <required>false</required>
  231. <rtexprvalue>true</rtexprvalue>
  232. </attribute>
  233. <attribute>
  234. <name>htmlEscape</name>
  235. <required>false</required>
  236. <rtexprvalue>true</rtexprvalue>
  237. </attribute>
  238. </tag>
  239. </taglib>