首页 > 其他分享> > 【JSTL错误排除】According to TLD or attribute directive in tag file, attribute items does not accept any e
【JSTL错误排除】According to TLD or attribute directive in tag file, attribute items does not accept any e
作者:互联网
一、错误信息
二、错误原因
因为使用了 JSP 2.0, 但又没有使用 JSTL 标签库的备用版本(RT库)
三、解决方案
原来jstl引用:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
修改后的jstl引用:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
标签:错误,directive,JSTL,attribute,According,accept,jstl,引用 来源: https://www.cnblogs.com/prettychandler/p/15640729.html