#836 - ENH: Add support for @DbArray even for H2 db

This commit is contained in:
Rob Bygrave
2016-11-04 01:16:32 +13:00
parent a1b4af2716
commit f08dd01035
9 changed files with 173 additions and 25 deletions
@@ -27,6 +27,9 @@ public class EArrayBean {
@DbArray
List<Long> otherIds = new ArrayList<Long>();
@DbArray
List<Double> doubs;
@Version
Long version;
@@ -70,6 +73,14 @@ public class EArrayBean {
this.otherIds = otherIds;
}
public List<Double> getDoubs() {
return doubs;
}
public void setDoubs(List<Double> doubs) {
this.doubs = doubs;
}
public Long getVersion() {
return version;
}