2

我有这个模式,我正在使用 JAXB 生成 java 存根文件。

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:c="http://www.a.com/f/models/types/common"
    targetNamespace="http://www.a.com/f/models/types/common"
    elementFormDefault="qualified">

    <xs:complexType name="constants">
        <xs:sequence>
            <xs:element name="constant" type="c:constant" maxOccurs="unbounded"/>
        </xs:sequence>
    </xs:complexType>

    <xs:complexType name="constant">
        <xs:sequence>
            <xs:element name="reference" type="c:reference"/>
        </xs:sequence>
        <xs:attribute name="name" use="required" type="xs:string"/>
        <xs:attribute name="type" use="required" type="c:data-type"/>
    </xs:complexType>

默认的 java 包名是 'com.afmodels.types.common'

我还在包“com.afmodel.common”中定义了“常量”和“常量”的现有接口,我希望生成的类可以使用。我正在使用 jaxb 绑定文件来确保生成的 java 类实现所需的接口

<jxb:bindings schemaLocation="./commonmodel.xsd" node="/xs:schema">
    <jxb:bindings node="xs:complexType[@name='constants']">
        <jxb:class/>
        <inheritance:implements>com.a.f.model.common.Constants</inheritance:implements> 
    </jxb:bindings>

下面生成的类确实实现了正确的接口

package com.a.f.models.types.common;
..
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "constants", propOrder = {
    "constant"
})
public class Constants
    implements com.a.f.model.common.Constants
{

    @XmlElement(required = true)
    protected List<Constant> constant;

    public List<Constant> getConstant() {

但是 List<> getConstant() 方法的返回类型不正确。我需要这个

public List<com.a.f.model.common.Constant> getConstant() {

是否可以通过 jaxb 绑定文件执行此操作?

4

1 回答 1

2

我通过使用 java 泛型来解决这个问题,使现有接口的返回类型更加灵活

package com.a.f.m.common;

import java.util.List;

public interface Constants {

    public List<? extends Constant> getConstant();
}

由于 JAXB 生成的类 Constant 确实实现了现有接口 Constant,因此方法上的返回类型是允许的。似乎不可能使用 JAXB 绑定文件来声明返回类型。

于 2011-07-13T15:48:30.887 回答