错误:
严重: 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"%>
主要原因:
版本问题