I will precompile some jsp files using the ant jspc task, but it did not work.
errers: info.jsp (35,2) The fn attribute prefix does not match any imported tag library
info.jsp line 35:
<c:if test="${fn:length(requestScope.checkDetailInfoList) gt 1}">
ant xml task:
<jasper validateXml="false" uriroot="${basedir}/WebRoot"
webXmlFragment="${dir.WEB-INF}/generated_web.xml"
outputDir="${dir.WEB-INF}/src" />
How do i fix it?
source
share