<%@ taglib prefix="" uri=""%>
例:1、引入struts的bean标签
<%@ taglib prefix="bean" uri="http://struts.apache.org/tag-bean"%>
2、引入struts的logic标签
<%@ taglib prefix="logic" uri="http://struts.apache.org/tag-logic"%>
3、引入JSTL的核心库标签
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
4、引入JSTL的格式化库标签
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
5、引入JSTL的函数库
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
相应的uri在引入的相应的jar包中寻找
例:1、引入struts的bean标签
<%@ taglib prefix="bean" uri="http://struts.apache.org/tag-bean"%>
2、引入struts的logic标签
<%@ taglib prefix="logic" uri="http://struts.apache.org/tag-logic"%>
3、引入JSTL的核心库标签
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
4、引入JSTL的格式化库标签
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
5、引入JSTL的函数库
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
相应的uri在引入的相应的jar包中寻找