📄 example-taglib.tld
字号:
<?xml version="1.0" encoding="ISO-8859-1" ?><!-- Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.--><!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"><!-- a tag library descriptor --><taglib> <!-- after this the default space is "http://java.sun.com/j2ee/dtds/jsptaglibrary_1_2.dtd" --> <tlibversion>1.0</tlibversion> <jspversion>1.1</jspversion> <shortname>simple</shortname> <uri></uri> <info> A simple tab library for the examples </info> <tag> <name>ShowSource</name> <tagclass>samples.webapps.simple.beans.examples.ShowSource</tagclass> <info> Display JSP sources </info> <attribute> <name>jspFile</name> <required>true</required> <rtexprvalue>true</rtexprvalue> </attribute> </tag> <!-- A simple Tag --> <!-- foo tag --> <tag> <name>foo</name> <tagclass>samples.webapps.simple.beans.examples.FooTag</tagclass> <teiclass>samples.webapps.simple.beans.examples.FooTagExtraInfo</teiclass> <bodycontent>JSP</bodycontent> <info> Perform a server side action; uses 3 mandatory attributes </info> <attribute> <name>att1</name> <required>true</required> </attribute> <attribute> <name>att2</name> <required>true</required> </attribute> <attribute> <name>att3</name> <required>true</required> </attribute> </tag> <!-- Another simple tag --> <!-- log tag --> <tag> <name>log</name> <tagclass>samples.webapps.simple.beans.examples.LogTag</tagclass> <bodycontent>TAGDEPENDENT</bodycontent> <info> Perform a server side action; Log the message. </info> <attribute> <name>toBrowser</name> <required>false</required> </attribute> </tag> </taglib>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -