引入c标签无效果

一:JAR包依赖
jstl
jstl
1.2
taglibs
standard
1.1.2

二:JSP加入库的引用,视情况引入,一般第一个第二个够用
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="fmt"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="fn"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="sql"%>

<%@ page isELIgnored="false"%>

你可能感兴趣的:(java开发)