JSP報錯:According to TLD or attribute directive in tag file, attribute [items] does not accept any expressions
由相應狀态碼“500”可知,問題出在伺服器端
通過網上查閱資料,是由于在引入JSTL核心庫的時候,引用了低版本的core(1.0版本),導緻了不相容
解決措施:
隻需将
<%@taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
修改為
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
即可