How to persist a List of Strings in Hibernate?
2022-08-31 16:53:37
I seem to have problems with mapping a List in Hibernate. In our project there a class with contains a class with containing a .Card
Answer
Answer
List<String>
Is a mappable by Hibernate using annotations? I mean, since it does not have the annotation?List<String>
@Entity
Regards