继续关注我的C语言学习博客

林临的地盘

java学习博客
posts - 44, comments - 28, trackbacks - 0, articles - 0
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
 

注意:如果所建项目是servlet2.4的,那么在web.xml中写taglib就要加一个

<jsp-config>标记,如下所示:

 

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2eehttp://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
 <display-name>
 TagStudy2
 </display-name>
 
  <jsp-config>
       <taglib>
           <taglib-uri>/hello</taglib-uri>
           <taglib-location>/WEB-INF/HelloTag.tld</taglib-location>
      </taglib>
   </jsp-config>
  

 <welcome-file-list>
  <welcome-file>default.jsp</welcome-file>
 </welcome-file-list>
 

</web-app>


评论

# re: 解决taglib在servlet2.4,jsp2.0下写入web.xml的问题  回复  更多评论   

2012-03-02 16:14 by beweather
谢了。

只有注册用户登录后才能发表评论。


网站导航:
 
继续关注我的C语言学习博客