jstl宣言ファイルを作成して、全jspでインクルードする方法(web.xml)
sastruts、もうそろそろリリースかな。
リポジトリからダウンロードして軽くチュートリアル見てみました。
sastrutsとは関係ないけど、jstl宣言ファイルを作成して、全jspでインクルードする方法が有ったのでメモ。
web.xmlに以下を追加
<jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <el-ignored>false</el-ignored> <page-encoding>UTF-8</page-encoding> <scripting-invalid>false</scripting-invalid> <include-prelude>/common.jsp</include-prelude> </jsp-property-group> </jsp-config>
common.jsp
<%@page pageEncoding="UTF-8"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> <%@taglib prefix="html" uri="http://struts.apache.org/tags-html"%> <%@taglib prefix="bean" uri="http://struts.apache.org/tags-bean"%> <%@taglib prefix="tiles" uri="http://jakarta.apache.org/struts/tags-tiles"%> <%@taglib prefix="s" uri="http://sastruts.seasar.org" %> <%@taglib prefix="f" uri="http://sastruts.seasar.org/functions" %>