引入jstl

这样引入时<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>

会报

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


改成这样就好了

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

你可能感兴趣的:(jstl)