Note: The following example works in EclipseLink JAXB (MOXy), but not the JAXB reference implementation included in Java SE 6.
If you are using MOXy as your JAXB provider (I'm the tech lead), then you could use an XmlAdapter for this use case.
DateAdatper
import java.util.Date;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import forum235.DateAdapter.AdaptedDate;
public class DateAdapter extends XmlAdapter<AdaptedDate, Date> {
@Override
public Date unmarshal(AdaptedDate adaptedDate) throws Exception {
return adaptedDate.date;
}
@Override
public AdaptedDate marshal(Date date) throws Exception {
AdaptedDate adaptedDate = new AdaptedDate();
adaptedDate.date = date;
return adaptedDate;
}
static class AdaptedDate {
@XmlValue
public Date date;
}
}
Root
import java.util.Date;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
@XmlRootElement
public class Root {
private Date date;
@XmlJavaTypeAdapter(DateAdapter.class)
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
}
Demo
import java.util.Date;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Root.class);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
Root root = new Root();
marshaller.marshal(root, System.out);
root.setDate(new Date());
marshaller.marshal(root, System.out);
}
}
Output
<?xml version="1.0" encoding="UTF-8"?>
<root>
<date/>
</root>
<?xml version="1.0" encoding="UTF-8"?>
<root>
<date>2011-06-16T09:16:09.452</date>
</root>
jaxb.properties
You use MOXy as your JAXB provider you need to provide a file called jaxb.properties in the same package as your domain classes with the following entry:
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
For More Information on XmlAdapter