您的位置:首页 > 其它

According to TLD or attribute directive in tag file, attribute items does not accept any expressions

2017-11-06 10:42 435 查看
错误:

严重: Servlet.service() for servlet jsp threw exception

org.apache.jasper.JasperException: /WEB-INF/page/employee.jsp(24,3) According to TLD or attribute directive in tag file, attribute items does not
accept any expressions

解决方案:

<%@
taglib uri="http://java.sun.com/jstl/core"
prefix="c"
%>

改为

<%@
taglib uri="http://java.sun.com/jstl/core_rt"
prefix="c"%>

主要原因:

版本问题
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐