spring-data-mybatis
spring-data-mybatis copied to clipboard
@ElementCollection support
@Entity
public class Person {
@Id protected String ssn;
protected String name;
@ElementCollection
protected Set<String> nickNames = new HashSet();
// ...
}