servlet2.5 taglib在web.xml中的变化

下面再说一下WEB.XML中的配置,注意这里是和以前的版本最不一样的地方,原来我们是在<taglib></taglib>中应用的自定义标签,但是Servlet2.5是这样定义的:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 
 xmlns="http://java.sun.com/xml/ns/javaee
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  
<jsp-config>
   <taglib>
    <taglib-uri>/demotag</taglib-uri>
  <taglib-location>/WEB-INF/tlds/mytag.tld</taglib-location>
   </taglib>
  </jsp-config>
</web-app>

你可能感兴趣的:(servlet)