Preguntas etiquetadas con jpa-2.0

103
Almacenamiento de un mapa <String, String> usando JPA

Me pregunto si es posible usar anotaciones para conservar el attributesmapa en la siguiente clase usando JPA2 public class Example { long id; // .... Map<String, String> attributes = new HashMap<String, String>(); // .... } Como ya tenemos una base de datos de producción...