0

好的,这就去。这是我的第一个 wicket 应用程序,我正在尝试使用 pushpanel 示例集成 icepush。

我想要做的是通过从另一个类调用“updatePanel(String content)”方法将更新推送到面板。

这是代码。

在我扩展的 PushPanel 中,我有:

public AsyncCommsPanel(String id) {
    super(id);
    this.setOutputMarkupId(true);

    ajaxForm = new Form("ajaxForm");
    ajaxForm.setOutputMarkupId(true);

    ajaxForm.add(textStore = new Label("textStore",""));

    ajaxForm.add(new AjaxButton("updateButton") {
        @Override
        protected void onSubmit(AjaxRequestTarget target, Form form) {
            System.out.println("Update button pressed!");
            /* CODE TO PULL NEW DATA FROM ELSEWHERE */
            /* UPDATE TAKES TIME SO HAS ITS OWN CALLBACK */
        }

        @Override
        protected void onError(AjaxRequestTarget target, Form<?> form) {
            System.out.println("Update button error.");
        }
    });
    add(ajaxForm);
}

@Override
protected void pushCallback(AjaxRequestTarget target) {
    target.add(ajaxForm);
}

public void updatePanel(String updateString) {
    /* THIS METHOD SHOULD ALLOW THE PANEL TO BE UPDATED FROM ELSEWHERE */
    if (textStore != null) ajaxForm.remove(textStore);
    ajaxForm.add(textStore = new Label("textStore", updateString));
    push();
}

当我尝试从数据收集器的回调方法中调用“updatePanel”方法时,我得到了这个异常:

ERROR (SelectorManager.run):  org.apache.wicket.WicketRuntimeException: No RequestCycle is currently set!
at org.apache.wicket.Component.getRequest(Component.java:1831)
at org.apache.wicket.markup.html.WebPage.dirty(WebPage.java:315)
at org.apache.wicket.Page.dirty(Page.java:288)
at org.apache.wicket.Page.componentRemoved(Page.java:948)
at org.apache.wicket.MarkupContainer.removedComponent(MarkupContainer.java:1422)
at org.apache.wicket.MarkupContainer.remove(MarkupContainer.java:612)
at uk.ac.warwick.collabtex.AsyncCommsPanel.updatePanel(AsyncCommsPanel.java:107)
at uk.ac.warwick.collabtex.Editor$1.updateSuccess(Editor.java:98)
4

1 回答 1

3

欢迎来到异步世界 :-) ThreadLocals(Application、Session 和 ThreadLocal)仅在处理 http 请求线程(又名工作线程)期间可用。所以有两个问题:1)通过启动您自己的线程,您会丢失 ThreadLocal,2)即使您导出它们,那么当您的工作完成时,响应可能已经关闭。我不确定 IcePush 是如何工作的,但这是我认为最好的选择 - 提交任务,在应用程序中保留对它的引用(例如地图),然后启动一个询问 futureTask.isDone() 的 ajax 计时器行为定期,当它返回 true 时,您需要更改层次结构(我在堆栈跟踪中看到对 MarkupContainer#remove() 的调用)。

于 2012-03-25T17:16:06.473 回答