我正在使用Jersey(jax-rs)来构建一个REST丰富的应用程序。
一切都很棒,但我真的不明白如何为日期和数字配置JSON编组/解组选项。
我有一个User类:
@XmlRootElement
public class User {
private String username;
private String password;
private java.util.Date createdOn;
// ... getters and setters
}
当createdOn
属性被序列化时,我得到一个这样的字符串:'2010-05-12T00:00:00 + 02:00',但是我需要使用特定的日期模式,两者都要编组和解散日期。
有人知道该怎么做吗?
答案 0 :(得分:16)
你可以写一个XmlAdapter:
您的特定XmlAdapter看起来像:
import java.util.Date;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class JsonDateAdapter extends XmlAdapter<String, Date> {
@Override
public Date unmarshal(String v) throws Exception {
// TODO convert from your format
}
@Override
public String marshal(Date v) throws Exception {
// TODO convert to your format
}
}
然后在您的日期属性中设置以下注释:
@XmlJavaTypeAdapter(JsonDateAdapter.class)
public getDate() {
return date;
}
答案 1 :(得分:2)
您得到的是日期ISO 8601格式,这是一种标准。 Jersey会在服务器上为你解析它。对于javascript,这里有一个extension to js date来解析它。
更新链接已死:尝试其他解析器,请参阅Help parsing ISO 8601 date in Javascript
答案 2 :(得分:1)
如果您不想使用适配器或者您需要为不同的对象进行自定义编组,并且想要完全避免使用适配器,那么您还可以使用属性和bean模式:
private Date startDate;
@XmlTransient
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
@XmlElement public String getStrStartDate() {
if (startDate == null) return null;
return "the string"; // the date converted to the format of your choice with a DateFormatter";
}
public void setStrStartDate(String strStartDate) throws Exception {
this.startDate = theDate; // the strStartDate converted to the a Date from the format of your choice with a DateFormatter;
}