I have made a class with name of Movie with folowing fields:
@Id @GeneratedValue private Long id; private String name; @ElementCollection(targetClass = S
Shouldn't properties just be a List type?
List
It sounds like Hibernates confusion is the same as mine which is, why is Properies a Map instead of a list? What exactly are you trying to do there?