我有这个架构,我正在使用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.a.f.models.types.common'
我还在'com.a.f.model.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&lt;&gt;的返回类型getConstant()方法不正确。我需要这个
public List<com.a.f.model.common.Constant> getConstant() {
是否可以通过jaxb绑定文件执行此操作?
答案 0 :(得分:2)
我通过使用java Generics来解决这个问题,使现有接口的返回类型更加灵活
package com.a.f.m.common;
import java.util.List;
public interface Constants {
public List<? extends Constant> getConstant();
}
由于JAXB生成的类Constant实现了现有的接口Constant,因此允许该方法的返回类型。似乎不可能使用JAXB绑定文件来声明返回类型。