JSP引入JSTL表达式出现 attribute items does not accept any expressions

在使用EL+JSTL表达式的时候,跳转至该页面报错:According to TLD or attribute directive in tag file, attribute items does not accept any expressions

出现原因:引用不对<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>

解决办法:改为<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

PS:我用的是JSTL1.2,pom依赖如下


  jstl
  jstl
  1.2

 

你可能感兴趣的:(JSP引入JSTL表达式出现 attribute items does not accept any expressions)