Friday 23 December 2011

JPA: how to save a List of Blob


@Entity
@Table(name="FOO")
public class FOO {

 // Item should implement Serializable; do not
 // add here any JPA annotations
 public ArrayList getItems() {...}
}

// no JPA annotations
public class Item implements Serializable {


}

References

StackOverflow

No comments:

Post a Comment