在我们的应用程序中有一个相当普遍的模式。我们在 Xml 中配置一组(或列表)对象,它们都实现了一个通用接口。在启动时,应用程序读取 Xml 并使用 JAXB 创建/配置对象列表。我从来没有想过(在多次阅读各种帖子之后)只使用 JAXB 来做到这一点的“正确方法”。
例如,我们有一个接口Fee
,以及多个具体的实现类,它们有一些共同的属性,也有一些不同的属性,以及非常不同的行为。我们用来配置应用程序使用的费用列表的 XML 是:
<fees>
<fee type="Commission" name="commission" rate="0.000125" />
<fee type="FINRAPerShare" name="FINRA" rate="0.000119" />
<fee type="SEC" name="SEC" rate="0.0000224" />
<fee type="Route" name="ROUTES">
<routes>
<route>
<name>NYSE</name>
<rates>
<billing code="2" rate="-.0014" normalized="A" />
<billing code="1" rate=".0029" normalized="R" />
</rates>
</route>
</routes>
...
</fee>
</fees>
在上面的 XML 中,每个<fee>
元素对应一个 Fee 接口的具体子类。该type
属性提供有关要实例化哪种类型的信息,然后一旦实例化,JAXB 解组将应用剩余 Xml 中的属性。
我总是不得不求助于做这样的事情:
private void addFees(TradeFeeCalculator calculator) throws Exception {
NodeList feeElements = configDocument.getElementsByTagName("fee");
for (int i = 0; i < feeElements.getLength(); i++) {
Element feeElement = (Element) feeElements.item(i);
TradeFee fee = createFee(feeElement);
calculator.add(fee);
}
}
private TradeFee createFee(Element feeElement) {
try {
String type = feeElement.getAttribute("type");
LOG.info("createFee(): creating TradeFee for type=" + type);
Class<?> clazz = getClassFromType(type);
TradeFee fee = (TradeFee) JAXBConfigurator.createAndConfigure(clazz, feeElement);
return fee;
} catch (Exception e) {
throw new RuntimeException("Trade Fees are misconfigured, xml which caused this=" + XmlUtils.toString(feeElement), e);
}
}
在上面的代码中,这JAXBConfigurator
只是 JAXB 对象的一个简单包装器,用于解组:
public static Object createAndConfigure(Class<?> clazz, Node startNode) {
try {
JAXBContext context = JAXBContext.newInstance(clazz);
Unmarshaller unmarshaller = context.createUnmarshaller();
@SuppressWarnings("rawtypes")
JAXBElement configElement = unmarshaller.unmarshal(startNode, clazz);
return configElement.getValue();
} catch (JAXBException e) {
throw new RuntimeException(e);
}
}
最后,在上述代码中,我们得到一个 List,其中包含在 Xml 中配置的任何类型。
有没有办法让 JAXB 自动执行此操作,而无需编写代码来迭代上面的元素?