jaxb unmarshal 时间戳

2022-08-31 16:21:35

我无法让 JAXB 在 Resteasy JAX-RS 服务器应用程序中取消绑定时间戳。

我的类看起来像这样:

@XmlAccessorType(XmlAccessType.NONE)
@XmlRootElement(name = "foo")
public final class Foo {
    // Other fields omitted

    @XmlElement(name = "timestamp", required = true)
    protected Date timestamp;

    public Foo() {}

    public Date getTimestamp() {
        return timestamp;
    }

    public String getTimestampAsString() {
        return (timestamp != null) ? new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(timestamp) : null;
    }

    public void setTimestamp(final Date timestamp) {
        this.timestamp = timestamp;
    }

    public void setTimestamp(final String timestampAsString) {
        try {
            this.timestamp = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(timestampAsString);
        } catch (ParseException ex) {
            this.timestamp = null;
        }
    }
}

有什么想法吗?

谢谢。


答案 1

JAXB 可以处理 java.util.Date 类。但是,它期望的格式:

“yyyy-MM-dd'T'HH:mm:ss”而不是“yyyy-MM-dd HH:mm:ss”

如果你想使用这种日期格式,我建议使用XmlAdapter,它看起来像下面这样:

import java.text.SimpleDateFormat;
import java.util.Date;

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class DateAdapter extends XmlAdapter<String, Date> {

    private SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

    @Override
    public String marshal(Date v) throws Exception {
        return dateFormat.format(v);
    }

    @Override
    public Date unmarshal(String v) throws Exception {
        return dateFormat.parse(v);
    }

}

然后,您将在时间戳属性上指定此适配器:

import java.util.Date;

import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

@XmlAccessorType(XmlAccessType.NONE) 
@XmlRootElement(name = "foo") 
public final class Foo { 
    // Other fields omitted 

    @XmlElement(name = "timestamp", required = true) 
    @XmlJavaTypeAdapter(DateAdapter.class)
    protected Date timestamp; 

    public Foo() {} 

    public Date getTimestamp() { 
        return timestamp; 
    } 

    public void setTimestamp(final Date timestamp) { 
        this.timestamp = timestamp; 
    } 

}

答案 2

JAXB 不能直接封送对象,因为它们没有足够的信息来明确。JAXB 为此目的引入了 XmlGregorianCalendar 类,但直接使用起来非常不愉快。Date

我建议将字段更改为 ,并更改各种方法来更新此字段,同时尽可能保留已有的公共接口。timestampXmlGregorianCalendar

如果你想保留这个字段,那么你需要实现你自己的XmlAdapter类,告诉JAXB如何将你的XML转换为XML和从XML转向 XML。DateDate