Ich verwende JAXB 2.0 JDK 6, um eine XML-Instanz in POJOs zu entpacken.JAXB ruft Setter nicht beim Unmarshalling von Objekten auf
Um eine benutzerdefinierte Validierung hinzuzufügen, habe ich einen Validierungsaufruf in den Setter einer Eigenschaft eingefügt. Dennoch scheint es, dass der Unmarshaller den Setter nicht aufruft, sondern das private Feld direkt ändert.
Es ist wichtig für mich, dass die benutzerdefinierte Validierung für dieses spezielle Feld bei jedem Aufruf von unmarshall stattfindet.
Was soll ich tun?
Code:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LegalParams", propOrder = {
"value"
})
public class LegalParams {
private static final Logger LOG = Logger.getLogger(LegalParams.class);
@XmlTransient
private LegalParamsValidator legalParamValidator;
public LegalParams() {
try {
WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();
LegalParamsFactory legalParamsFactory = (LegalParamsFactory) webApplicationContext.getBean("legalParamsFactory");
HttpSession httpSession = SessionHolder.getInstance().get();
legalParamValidator = legalParamsFactory.newLegalParamsValidator(httpSession);
}
catch (LegalParamsException lpe) {
LOG.warn("Validator related error occurred while attempting to construct a new instance of LegalParams");
throw new IllegalStateException("LegalParams creation failure", lpe);
}
catch (Exception e) {
LOG.warn("Spring related error occurred while attempting to construct a new instance of LegalParams");
throw new IllegalStateException("LegalParams creation failure", e);
}
}
@XmlValue
private String value;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
* @throws TestCaseValidationException
*
*/
public void setValue(String value) throws TestCaseValidationException {
legalParamValidator.assertValid(value);
this.value = value;
}
}
Danke hat den Trick :) – Yaneeve