我的 Jaxb 问题JaxB 参考解决的原始原因
是我无法在使用简单框架时遇到同样的问题:
http://old.nabble.com/Two-Phase-support-for-CycleStrategy--td34802791.html
今天,我将使用持久化调用的事情恢复到与我的 Jaxb 问题相同的点:我得到副本- 而不是引用。我再次寻找具有适当参考的解决方案。这次是 Simple XML 框架。
此处的示例具有基类“ModelElement”,而不是其他问题中的 Person。否则问题是一样的。
我再次调用解组两次以获取 PASS 1 中的所有 ID,并使用在 PASS2 中创建的查找 HashMap 收集的结果。
获得适当参考的解决方案是什么?我的假设是添加一个实际上让被调用函数修改解组结果的回调(请参阅How to use an output parameter in Java? for a wrapping approach)可以解决问题(与我同时发布的 JaxB 解决方案相比) )。
Persister serializer = new Persister();
ModelElementSimpleXmlImpl.lookup.clear();
serializer.read(result, xml);
System.err.println("PASS 2");
serializer.read(result, xml);
此代码来自 ModelElementSimpleXmlImpl 基类:...
protected String ref;
/**
* getter for xsd:string/String id
* @return id
*/
@org.simpleframework.xml.Attribute(name="ref",required=false)
public String getRef() {
return ref;
}
/**
* setter for xsd:string/String id
* @param pid - new value for id
*/
@org.simpleframework.xml.Attribute(name="ref",required=false)
public void setRef(String pRef) {
ref=pRef;
}
private boolean debug=true;
/**
* show debug information
* @param title
* @param key
* @param me
* @param found
*/
public void showDebug(String title,String key,ModelElementSimpleXmlImpl me, ModelElementSimpleXmlImpl found) {
String deref="?";
if (found!=null)
deref="->"+found.getId()+"("+found.getClass().getSimpleName()+")";
if (debug)
System.err.println(title+": "+key+"("+me.getClass().getSimpleName()+")"+deref+" - "+this);
}
/**
* keep track of the elements already seen
*/
public static Map<String,ModelElementSimpleXmlImpl> lookup=new HashMap<String,ModelElementSimpleXmlImpl>();
@Validate
public void validate() {
ModelElementSimpleXmlImpl me=this;
String key=me.getId();
if (key!=null) {
showDebug("id",key,me,null);
lookup.put(key, me);
}
key=me.getRef();
if (key!=null) {
if (lookup.containsKey(key)) {
ModelElementSimpleXmlImpl meRef=lookup.get(key);
showDebug("ref",key,me,meRef);
me.setRef(null);
me.copyFrom(meRef);
} else {
if (debug)
showDebug("ref",me.getRef(),me,null);
}
}
}