JakartaTaglibs(jakarta-taglibs-response-1.0.1.zip)を導入した。
以下のサイトからダウンロード
http://jakarta.apache.org/site/downloads/downloads_taglibs-response.cgi
関連サイト
http://jakarta.apache.org/site/downloads/downloads_taglibs.html
http://jakarta.apache.org/taglibs/doc/response-doc/intro.html
API
http://jakarta.apache.org/taglibs/doc/response-doc/javadoc/index.html
解凍したファイル内の
taglibs-response.jarをコンテキスト内のWEB-INF\lib配下に
taglibs-response.tldをコンテキスト内のWEB-INF\配下に配置し
web.xmlファイルに以下を追加。
<jsp-config>
<taglib>
<taglib-uri>http://jakarta.apache.org/taglibs/response-1.0</taglib-uri>
<taglib-location>/WEB-INF/taglibs-response.tld</taglib-location>
</taglib>
</jsp-config>
これで、準備完了。
JSPから利用したい場合、
<%@ taglib prefix="res" uri="http://jakarta.apache.org/taglibs/response-1.0
" %>
の一行で、web.xmlファイルの
<taglib-uri>http://jakarta.apache.org/taglibs/response-1.0</taglib-uri>
に対応している>/WEB-INF/taglibs-response.tldを読みにいく。
そして、taglibs-response.tldファイルにマッピングされているクラスを利用するという流れ。