DOCTYPE后面跟的一般是xml文件的根元素:
像web-app就是web.xml文件的根元素,struts-config就是struts-config.xml文件的根元素.
你如果要引用自己写的dtd文件,可以如下:
 <taglib>
    <taglib-uri>struts/logic-el</taglib-uri>
    <taglib-location>/WEB-INF/struts-logic-el.tld</taglib-location>
  </taglib>
像这样引用.