1. 程式人生 > >maven pom.xml jstl

maven pom.xml jstl

	<!-- 新增jtl支援 -->
	<!-- jstl1.2的版本中不	依賴standart.jar -->
	<dependency>
		<groupId>javax.servlet</groupId>
		<artifactId>jstl</artifactId>
		<version>1.2</version>
	</dependency>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!--輸出,條件,迭代標籤庫--><%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%> <!--資料格式化標籤庫--><%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%> <!--資料庫相關標籤庫--><%@ taglib uri="http://java.sun.com/jsp/jstl/fn" prefix="fn"%> <!--常用函式標籤庫-->