在jsp页面中使用jstl报错

今天使用jstl,运行项目后,报错。

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

原始导入jstl语句为

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

修改后

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

问题得以解决

你可能感兴趣的:(在jsp页面中使用jstl报错)