我必须将“javax.activation.DataHandler-object”保存在数据库中。
我必须使用哪个 JPA 2.0 注释来保存对象?
这个类的映射文件是什么?
/**
* <pre>
* <complexType name="TXLKAORG_SL_DATA_Type">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="daten" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TXLKAORG_SL_DATA_Type", propOrder = { "erstellungsDatum", "daten" })
@Embeddable
public class TXLKAORGSLDATAType implements Serializable
{
@XmlElement(required = true)
@XmlMimeType("application/vnd.vdv.ah.txlkaorglist.sl.zip")
protected DataHandler daten;
...
...
}