比較的慣れていない JSP で Web プロジェクト ビルドをインポートしました。WEB-INF/includes/components解決できないエラーがいくつかありました。
一部の.jspfファイルには、次の行のようなエラーが表示されます。
<c:if test="${fn:length(view.parent.views) > 1}">
エラーは次のとおりです。
Multiple annotations found at this line:
- The function fn:length is
undefined
- Unknown tag (c:if).
のエラーなどのThe function fn:length is undefinedエラーも発生しfn:lengthます。
私は他の質問をフォローアップし、ビルドパスにstandard.jarとjstl-1.2.jarが含まれていることを確認しました。さらに、WEB-INF/includes/taglibs.jspf次のものがあります。
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>