嵌套ModalWindow的Wicket序列化问题

时间:2012-10-31 23:50:16

标签: java wicket

我遇到了Java和Apache Wicket 1.5的问题,其中两个匿名类的封闭Java对象的标识已经改变了!

在一个Wicket模态窗口中,我想创建第二个模态窗口(用于获取文本字符串提示),然后使用模型的AJAX刷新(字符串 - 整数对列表)更新原始模态窗口。

基本上我有两个在同一个方法中创建的匿名类,但封闭实例的'this'指针在一个匿名类和另一个匿名类之间是不同的。

这对我来说似乎不是正常的预期JVM行为,但我无法在Java规范中找到任何具体的工作原理。

public class DropDownChoiceModal extends WebPage {

    public String newTermResponse;

    private void addAddTermModal() {
        addTermModal = new ModalWindow("add_term_modal");
        addTermModal.setPageCreator(new ModalWindow.PageCreator() {
            public Page createPage() {
                PropertyModel pm = new PropertyModel<String>(DropDownChoiceModal.this, "newTermResponse"); 
                System.out.println ("propModel: " + System.identityHashCode(DropDownChoiceModal.this)); 
                return new TextInputModal(addTermModal, "What is the new term you wish to add?", pm);
            }
        });

        addTermModal.setWindowClosedCallback(new WindowClosedCallback() {
        public void onClose(AjaxRequestTarget target) {

            System.out.println ("propModel: " + System.identityHashCode(DropDownChoiceModal.this)); 
            System.out.println ("newTermResponse: " + DropDownChoiceModal.this.newTermResponse);

            // If the value is set then use it 
            if (newTermAvailable()) {

                // Add the new term to the model
                model.add(new StringIntegerPair (newTermResponse, 0));

                System.out.println ("Update view: " + model.size());

                // Update the view
                target.add(wmc);
            }
            System.out.println ("No new term");
        }

        private boolean newTermAvailable() {
            return (newTermResponse != null) && !newTermResponse.isEmpty();
        }
    });

    add(addTermModal);
    }

对于TextInputModal类:

public class TextInputModal extends WebPage {

public TextInputModal(final ModalWindow modal, String requestString, final IModel<?> model) {
    Form<String> form = new Form<String>("form") {
        public void onSubmit() {
            System.out.println ("Submitted: " + System.identityHashCode(((PropertyModel)model).getTarget()) + "; " + model.getObject());
        }
    };

    // Add the buttons
    form.add(new AjaxButton("ok") {
        public void onAfterSubmit(AjaxRequestTarget target, Form<?> form) {
            System.out.println ("Submitted 2: " + System.identityHashCode(((PropertyModel)model).getTarget()) + "; " + model.getObject());
            modal.close(target);
        }
    });

    // Add the form
    add(form);
}
}

我得到的输出:

propModel: 698650686
Submitted: 698650686; fdsfds
Submitted 2: 698650686; fdsfds
propModel: 1447892364
newTermResponse: null
No new term

为什么封闭实例(DropDownChoiceModal.this)的身份在匿名类1(新ModalWindow.PageCreator(){})和匿名类2(新的WindowClosedCallback(){})之间的变化在创建它们时的任何想法相同的方法(addAddTermModal())?

提前致谢...

1 个答案:

答案 0 :(得分:0)

非常感谢上面评论中的biziclop ...看起来Wicket在序列化时破坏了对象 - “newTermResponse”字符串的内容在此序列化过程中丢失了。

我回到了嵌套ModalWindow的例子:

http://www.wicket-library.com/wicket-examples/ajax/modal-window

使用示例中显示的getPageReference()而不是PropertyModel解决了我的问题。

干杯,