gpt4 book ai didi

java - JSP 标记库使用相同的对象

转载 作者:行者123 更新时间:2023-12-02 07:52:04 25 4
gpt4 key购买 nike

如何让我自己的标签使用相同的资源(例如 xml 文档)?

伪代码:

JSP:

<readxml:getuser/>
<readxml:getpassword/>

Java:

public class getpassword(or getuser) extends BodyTagSupport
{
if(doc)
{
out.println(doc)
}
else
{
doc = builder.build(file)
out.println(doc)
}
}

这可能吗?

最佳答案

您可以在当前请求的上下文中存储临时数据:

public class getpassword(or getuser) extends BodyTagSupport
{
public int doEndTag() {
Doc doc = pageContext.getRequest().getAttribute("doc");
if(doc == null)
{
pageContext.getRequest().setAttribute("doc", doc = builder.build(file));
}
out.println(doc);
...
}
}

您还可以将其存储到 session 或静态变量中(取决于您想要的范围)。

关于java - JSP 标记库使用相同的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10127559/

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