Topic: jsp中标签的部署与调用

  Print this page

1.jsp中标签的部署与调用 Copy to clipboard
Posted by: jerryjerry123
Posted on: 2005-05-10 10:21

1、首先编写一个(标签java文件)
头文件中要包含packeg+class文件的放置路径,然后编译生成class文件,放到相应classes目录下。
2、编写一个jsp或html 文件
注意:头文件中要写
<%@ taglib uri="名字与web.xml文件中的uri名字相同" prefix="first" %>
<first:"+tld文件中name相同"/>
3、编写一个tld文件
注意:修改
<tag>
<name>"与jsp或html相对应"</name>
<tagclass>"class文件的放置路径"</tagclass>
<bodycontent>empty</bodycontent>//注意什么时候用empty什么时候用jsp(与jsp/html有关)
<info>info</info>
</tag>
4、修改web.xml文件即添加标签
注意:添加
<taglib>
<taglib-uri>"与jsp或html的uri名字相同"</taglib-uri>
<taglib-location>"tld文件的放置路径"</taglib-location>
</taglib>

以上是通过xml作中转,如不许xml文件操作如下:
只许修改jsp以下内容:
、编写一个jsp或html 文件
注意:头文件中要写
<%@ taglib uri="tld文件的所在位置" prefix="first" %>
<first:"+tld文件中name相同"/>


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923