eclipse中使用jstl

对于jstl-1.2的版本,只需在lib中添加jstl的jar包,然后在使用的jsp页面中加上<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>即可。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
	<h1><c:out value="hello world"></c:out></h1>
</body>
</html>


注:若直接通过导入外面Jar包,虽项目上不会有小红叉,但运行时仍会出错。需将jar包复制大WEB-INF的lib下。

参考博文:http://blog.csdn.net/alvinnoending/article/details/42852313


猜你喜欢

转载自blog.csdn.net/qq_34902684/article/details/78239095
今日推荐