Eclipse中使用jstl标签
Eclipse中直接使用jstl标签,会出现如下错误
而在 Myeclipse中新建web工程,新建jsp页面可以直接使用jstl标签,因为在新建工程时Myeclipse自动导入了使用jstl所需的jar包。在Eclipse中使用jstl,需要:
1、导入jstl.jar、standard.jar 2个jar包;
2、在WEB-INF下拷入c.tld文件;
3、web.xml加上如下配置
[html] view plain copy
<jsp-config>
<taglib>
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
</jsp-config>
经过这几步就可以正常使用jstl标签了
粘贴自http://blog.csdn.net/czxt0605/article/details/38080495