JPA javax.activation.DataHandler MappingType

时间:2012-04-12 12:25:57

标签: hibernate jpa orm mapping datahandler

我有以下问题。

我必须在数据库中保存“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;

 ...
 ...
 }

0 个答案:

没有答案