웹 배치 디스크립터 파일은 URI를 실제 TLD 파일로 맵핑하는 <taglib-uri> 및 <taglib-location> 태그를 포함할 수 있습니다. <taglib-uri>는 WEB-INF/taglib.tld로 공개되는 TLD 파일의 별명 역할을 합니다. 이 경우 JSP 파일의 taglib 지시문을 단축할 수 있게 됩니다.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
</web-app>
<display-name>helloWorld-server</display-name>
<taglib>
<taglib-uri>mytags</taglib-uri>
<taglib-location>WEB-INF/taglib.tld</taglib-location>
</taglib>
</web-app>