在maven项目中使用JSTL标签库

在maven项目中使用JSTL标签库

1.在pom.xml中添加依赖


    org.apache.taglibs
    taglibs-standard-spec
    1.2.1


    org.apache.taglibs
    taglibs-standard-impl
    1.2.1
 

2. 在JSP中添加声明

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

 

 

你可能感兴趣的:(JavaWeb笔记,jstl,maven)