easybest / spring-data-mybatis

Simplifies the development of creating a MyBatis-based data access layer.
https://sdm.easybest.io
Apache License 2.0
237 stars 73 forks source link

@ElementCollection support #239

Open easybest opened 3 years ago

easybest commented 3 years ago

@Entity
public class Person {
@Id protected String ssn;
protected String name;

@ElementCollection
protected Set<String> nickNames = new HashSet();

// ...
}