gpt4 book ai didi

java - tld 文件中的堆栈

转载 作者:行者123 更新时间:2023-12-01 15:35:55 26 4
gpt4 key购买 nike

我已经创建了一个自定义 tld 文件。并包含在我的jsp中。

myJsp

<%@ taglib uri="/WEB-INF/Tag.tld" prefix="Tag" %>
...
pageContext.setAttribute("pageBean", myPageBean);
pageContext.setAttribute("formBean", myformBean);
...
<Tag:draw pageBean="${pageBean}" Data="${formBean}"/>

我的 Tag.tld 如下所示

<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.0" 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/j2ee web-jsptaglibrary_2_0.xsd">
<tlib-version>1.0</tlib-version>
<short-name>ct</short-name>
<uri>/WEB-INF/customTag</uri>
<tag>
<name>draw</name>
<tag-class>com.myPackage.calling.someOther.Class</tag-class>
<body-content>empty</body-content>
<info>Creates a graph based on the supplied input bean</info>
<attribute>
<name>Data</name>
<required>true</required>
<description>Provide a form graph bean</description>
<rtexprvalue>true</rtexprvalue>
</attribute>
<attribute>
<name>pageBean</name>
<required>true</required>
<description>Provide a Page Graph bean</description>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>

现在我需要在此处放置堆栈跟踪。需要知道我的 jsp 是否正确导入了这个 tld 文件。需要有一些行可以从 tld 文件中获取 SOP ???

最佳答案

标记在 TLD 中声明描述。 TLD 不包含任何可执行代码。

标记的实现位于 TLD 中指定的类中:com.myPackage.calling.someOther.Class。将您想要的所有代码放入此类中。

关于java - tld 文件中的堆栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8847258/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com