JSP报错:According to TLD or attribute directive in tag file, attribute items does not accept any expressions
  JSP 在使用forEach标签时报错:According to TLD or attribute directive in tag file, attribute items does not accept any expressions。
原因:web.xml的web-app_2_5.xsd版本大于2.3,需要使用jstl的扩展标签。
解决:jsp文件引用的jstl core标签库改为扩展标签库,
	将:<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>
	替换成:<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>。
差异:2.5版本可以根据索引 ID 取出 List 里的单个值, 2.3版本就不行。
| 1 | <body> | 
JSP报错:According to TLD or attribute directive in tag file, attribute items does not accept any expressions

