IDEA报错:根据标记文件中的TLD或attribute指令,attribute[items]不接受任何表达式
作者:互联网
org.apache.jasper.JasperException: /pages/role-list.jsp (行.: [145], 列: [8]) 根据标记文件中的TLD或attribute指令,attribute[items]不接受任何表达式
web.xml中版本号不兼容产生的问题;
解决方法:
<%@taglib prefix=“c” uri=“http://java.sun.com/jstl/core” %>改为
<%@taglib prefix=“c” uri=“http://java.sun.com/jstl/core_rt” %>
标签:标记,attribute,TLD,IDEA,指令,报错,items,表达式 来源: https://blog.csdn.net/weixin_44794178/article/details/119463707