使用 Wicket 1.5 提供动态内容

发布于 2024-12-07 23:26:12 字数 491 浏览 0 评论 0原文

我有我的 Wicket 1.4 代码,其中包含下载以编程方式生成的文件的链接:

protected class MyWebResource extends WebResource {
    public IResourceStream getResourceStream() {
        .....
        return new StringResourceStream(myString, "text/plain");
    }
}

ResourceLink<?> downloadLink = 
   new ResourceLink<Object>("downloadLink", new MyWebResource());

一切都很好。现在我已经升级到 Wicket 1.5。现在 WebResource 不再存在。

我在网上搜索了很长时间,这肯定是一个简单的问题,有一个简单的解决方案吗?唉我找不到它。

I have my Wicket 1.4 code to have a link to download a file which is generated programatically:

protected class MyWebResource extends WebResource {
    public IResourceStream getResourceStream() {
        .....
        return new StringResourceStream(myString, "text/plain");
    }
}

ResourceLink<?> downloadLink = 
   new ResourceLink<Object>("downloadLink", new MyWebResource());

Everything was good. Now I've upgrade to Wicket 1.5. Now WebResource doesn't exist any more.

I've searched the web for ages, surely this must be a simple problem which has a simple solution? Alas I can't find it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜心小果奶 2024-12-14 23:26:12

替代品是 AbstractResource。基本上,您应该创建 ResourceResponse 并执行您在 WriteCallback 中所做的操作。
请参阅 Wicket 代码中 AbstractResource 的专业化示例。
请参阅http://wicketinaction.com/2011/07/wicket-1 -5-mounting-resources/ 也是如此。

The replacement is AbstractResource. Basically you should create ResourceResponse and do what you did in its WriteCallback.
See the specializations of AbstractResource in Wicket's code for examples.
See http://wicketinaction.com/2011/07/wicket-1-5-mounting-resources/ as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文