在MyEclipse中使用jstl标签只需导读jstl.jar就能使用,但是在Eclipse中还需要一点小套路
步骤: 
一、导入jstl.jar 
二、导入导入standard.jar
三、在WEB-INF下拷入c.tld文件;
四、web.xml加上如下配置
<jsp-config>  
        <taglib>  
           <taglib-uri>http://java.sun.com/jstl/core</taglib-uri>  
            <taglib-location>/WEB-INF/c.tld</taglib-location>  
          </taglib>  
  </jsp-config>上述文件下载地址:
附上导入标签库头:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>                
                










