tomcat を実行してlocalhost:8080/manager/htmlに移動すると、次の内容を含む/examplesというサイトがあります。
Apache Tomcat Examples
Servlets examples
JSP Examples
WebSocket Examples
JSPの例 では、カスタム タグの例に進むと、ブラウザに次のようにレンダリングされたページがポップアップ表示されます。
Radio stations that rock:
98.5
92.3
107.7 Did you see me on the browser window as well?
このソース コードは、コンソールに taglib プレフィックス「eg」を含むログを書き込んでいることを示しています。
<html>
<body>
<%@ taglib uri="http://tomcat.apache.org/example-taglib" prefix="eg"%>
Radio stations that rock:
<ul>
<eg:foo att1="98.5" att2="92.3" att3="107.7">
<li><%= member %></li>
</eg:foo>
</ul>
<eg:log>
Did you see me on the stderr window?
</eg:log>
<eg:log toBrowser="true">
Did you see me on the browser window as well?
</eg:log>
</body>
</html>