比較的慣れていない 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" %>