廣告聯播

2014年4月2日 星期三

在 web.xml 不認識 taglib 的解決辦法

From: Polin Wei

在web.xml不認識<taglib>解決辦法:


如果開頭是這樣:

  <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

在<web-app> ... </web-app> 裡面加入

  <taglib>

      <taglib-uri>/mytaglib-tags</taglib-uri>

      <taglib-location>/WEB-INF/mytaglib-tags.tld</taglib-location>

  </taglib>

如果開頭是這樣:

  <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

在<web-app> ... </web-app> 裡面加入

  <jsp-config>

      <taglib>

          <taglib-uri>/mytaglib-tags</taglib-uri>

          <taglib-location>/WEB-INF/mytaglib-tags.tld</taglib-location>

      </taglib>

  </jsp-config>

沒有留言:

張貼留言