📄 jsp2-example-taglib.tld
字号:
<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0"> <!--TLD文件的文件头,这部分信息通常是固定不变的-->
<tlib-version>1.0</tlib-version> <!--指定标签库的版本号-->
<short-name>SimpleTag</short-name> <!--指定标签库的名称-->
<uri>/SimpleTagLibrary</uri> <!--指定该标签库的URI-->
<tag> <!--注册一个自定义标签-->
<name>helloWorld</name> <!--指定自定义标签的注册名称-->
<!--指定标签的标签处理器类-->
<tag-class>jsp2.examples.simpletag.HelloWorldSimpleTag</tag-class>
<!--指定标签体的类型,empty表示无标签体-->
<body-content>empty</body-content>
</tag>
……
</taglib>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -