logobodytag.tld
来自「介绍了j2ee开发常用的学习知识,如servlet,javamail,EJB等知」· TLD 代码 · 共 47 行
TLD
47 行
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-JSPtaglibrary_1_2.dtd"><taglib> <tlib-version>1.0</tlib-version> <jsp-version>1.2</jsp-version> <short-name>logoTag</short-name> <display-name>logoTag</display-name> <description>my logo tag </description> <tag> <name>logo</name> <!-- make sure to use the fully qualifed class name --> <tag-class>com.tag.LogoBodyTag</tag-class> <body-content>JSP</body-content> <description>This tag writes a logo inside the JSP.</description> <attribute> <name>heading</name> <!-- The logo tag requires this attribute --> <required>true</required> <!-- The attribute can take a JSP expression as a value --> <rtexprvalue>true</rtexprvalue> <description>The heading level for the logo; 1 through 6. </description> </attribute> <attribute> <name>image</name> <required>true</required> <rtexprvalue>true</rtexprvalue> <description>The image name for the logo.</description> </attribute> <attribute> <name>width</name> <required>true</required> <rtexprvalue>true</rtexprvalue> <description>The image width for the logo.</description> </attribute> <attribute> <name>height</name> <required>true</required> <rtexprvalue>true</rtexprvalue> <description>The image height for the logo.</description> </attribute> </tag></taglib>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?