报错信息
org.apache.jasper.JasperException: /gotoscenic.jsp (line: [25], column: [2]) According to TLD or attribute directive in tag file, attribute [items] does not accept any expressions
分析错误
JSTL导错了
我导的是
<%@ taglib prefix=“c” uri=“http://java.sun.com/jstl/core” %>
应该导入下面
<%@ taglib prefix=“c” uri=“http://java.sun.com/jsp/jstl/core” %>
或者导入这个
<%@ taglib prefix=“c” uri=“http://java.sun.com/jstl/core_rt” %>
问题解决