2

我有一个 xsd,它与使用 spring-ws 实现的肥皂网络服务一起使用。其中一种类型定义如下:

   <xsd:complexType name="DateTimeWithTimeZone">
      <xsd:annotation>
         <xsd:documentation>An extension to the standard dateTime, that forces the use of a proper time zone.</xsd:documentation>
      </xsd:annotation>
      <xsd:attribute name="DateTime" type="xsd:dateTime" use="required">
         <xsd:annotation>
            <xsd:documentation>The date time value</xsd:documentation>
         </xsd:annotation>
      </xsd:attribute>
      <xsd:attribute name="TimeZone" type="xsd:string" use="optional" default="UTC">
         <xsd:annotation>
            <xsd:documentation>The time zone of the relevant date/time, should be a standard time zone from the Time Zone database at http://www.iana.org/time-zones</xsd:documentation>
         </xsd:annotation>
      </xsd:attribute>
   </xsd:complexType>

我的问题是,当我的 JBoss 加载时,我得到了这个异常:

ERROR [org.springframework.web.context.ContextLoader] Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'marshaller' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is org.springframework.oxm.UncategorizedMappingException: Unknown JAXB exception; nested exception is com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
@XmlAttribute/@XmlValue need to reference a Java type that maps to text in XML.
    this problem is related to the following location:
        at protected javax.xml.datatype.XMLGregorianCalendar com.example.schema.DateTimeWithTimeZone.dateTime
        at com.example.schema.DateTimeWithTimeZone
   ...

生成的java文件如下:

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DateTimeWithTimeZone")
public class DateTimeWithTimeZone {

    @XmlAttribute(name = "DateTime", required = true)
    @XmlSchemaType(name = "dateTime")
    protected XMLGregorianCalendar dateTime;
    @XmlAttribute(name = "TimeZone")
    protected String timeZone;

    public XMLGregorianCalendar getDateTime() {
        return dateTime;
    }
    public void setDateTime(XMLGregorianCalendar value) {
        this.dateTime = value;
    }
    public String getTimeZone() {
        if (timeZone == null) {
            return "UTC";
        } else {
            return timeZone;
        }
    }
    public void setTimeZone(String value) {
        this.timeZone = value;
    }
}

我怎样才能摆脱这个异常?

4

1 回答 1

2

嗯,这似乎很奇怪。我找不到一个很好的理由为什么这不起作用。您是否尝试过使用自定义绑定文件将 xs:datetime 转换为使用 JavaCalendar对象?它似乎以XmlGregorianCalendar某种方式打破。也许正常Calendar会起作用。

该文件看起来像:

<bindings xmlns="http://java.sun.com/xml/ns/jaxb" version="2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <globalBindings>
    <javaType name="java.util.Calendar" xmlType="xs:dateTime"
      parseMethod="javax.xml.bind.DatatypeConverter.parseDate"
      printMethod="javax.xml.bind.DatatypeConverter.printDate"
    />
  </globalBindings>
</bindings>

你可以像这样将它添加到你的 pom.xml 中:

<configuration>
    <bindingFiles>/path/to/bindings.xjb</bindingFiles>
<configuration>

或者通过使用 xjc 像:

xjc schema.xsd -b bindings.xjb
于 2013-02-27T11:13:53.580 回答