2

在我的 GWT 应用程序中,必须跟踪对我的休眠对象所做的更改,所以我有这个简单的 POJO 来将修改传输到服务器端,在那里它们将被记录:

public class ModifiedValueReference implements Serializable {
    private static final long serialVersionUID = 6144012539285913980L;

    private Serializable oldValue;
    private Serializable newValue;

    public ModifiedValueReference() {
        super();
    }

    public ModifiedValueReference(Serializable oldValue, Serializable newValue) {
        this();
        setOldValue(oldValue);
        setNewValue(newValue);
    }

    public Serializable getOldValue() {
        return oldValue;
    }

    public void setOldValue(Serializable oldValue) {
        this.oldValue = oldValue;
    }

    public Serializable getNewValue() {
        return newValue;
    }

    public void setNewValue(Serializable newValue) {
        this.newValue = newValue;
    }

}

属性oldValuenewValue是类型Serializable,因此可以存储我的整数、字符串、日期和布尔值,以及其他几个 Hibernate 对象。

跟踪是通过使用记录修改的特殊设置方法来实现的(例如:通过使用setFirstNameLog()而不是setFirstName()下面):

public class Person {

    private String firstname;

    private Map<String, ModifiedValueReference> modifications = 
            new HashMap<String, ModifiedValueReference>(15);

    public void addModification(String key, Serializable oldValue, Serializable newValue) {
        if (key != null && !key.isEmpty()) {
            modifications.put(key, 
                    new ModifiedValueReference(oldValue, newValue));
        }
    }

    public void setFirstnameLog(String firstname) {
        addModification("First Name", getFirstname(), firstname);
        setFirstname(firstname);
    }

    public void setFirstname(String firstname) {
        this.firstname = firstname;     
    }
    public String getFirstname() {
        return this.firstname;
    }
}

ModifiedValueReference对象通过 GWT RPC 到达服务器端时,oldValueandnewValue为空!为什么?

这些字段在客户端用字符串填充。在服务器端,它们不是 null,而是空字符串。

4

1 回答 1

1

问题是modificationsPerson班级中的地图没有设置方法(例如:setModifications(Map<String, ModifiedValueReference>)方法)。

Person因此,当通过 RPC 方法保存对象时,GWT RPC 无法在服务器端重建映射。

于 2013-10-23T00:44:26.303 回答