关于JSP中的taglib uri

自定义标签在jsp中应用是需要声明标签库,有下面两种方式:
1、直接指定路径
        <%@ taglib prefix="mytag" uri="/WEB-INF/testcomp.tld" %>
2、间接引用
        <%@ taglib prefix="tt" uri="http://testcomp.com/testcomp/core" %>
        这样做需要在web.xml中增加下面的内容:
       <jsp-config>
            <taglib>
                   <taglib-uri>http://testcomp.com/testcomp/core</taglib-uri>
                   <taglib-location>/WEB-INF/testcomp.tld</taglib-location> 
            </taglib>
       </jsp-config>
很明显,间接的方式更加灵活,当.tld文件改变存放位置时只需要修改web.xml,而不用去修改每个jsp页面

你可能感兴趣的:(Web,xml,jsp)