[FIX] throw in @ManyToMany when not a list instead of log a simple error
This commit is contained in:
parent
963f53c2ad
commit
0cf718d415
@ -304,8 +304,7 @@ public class AddOnManyToMany implements DataAccessAddOn {
|
|||||||
final QueryOptions options,
|
final QueryOptions options,
|
||||||
final List<LazyGetter> lazyCall) throws Exception {
|
final List<LazyGetter> lazyCall) throws Exception {
|
||||||
if (field.getType() != List.class) {
|
if (field.getType() != List.class) {
|
||||||
LOGGER.error("Can not ManyToMany with other than List Model: {}", field.getType().getCanonicalName());
|
throw new SystemException("@ManyToMany must contain a List");
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
final Class<?> objectClass = (Class<?>) ((ParameterizedType) field.getGenericType())
|
final Class<?> objectClass = (Class<?>) ((ParameterizedType) field.getGenericType())
|
||||||
.getActualTypeArguments()[0];
|
.getActualTypeArguments()[0];
|
||||||
@ -314,12 +313,14 @@ public class AddOnManyToMany implements DataAccessAddOn {
|
|||||||
field.set(data, idList);
|
field.set(data, idList);
|
||||||
count.inc();
|
count.inc();
|
||||||
return;
|
return;
|
||||||
} else if (objectClass == UUID.class) {
|
}
|
||||||
|
if (objectClass == UUID.class) {
|
||||||
final List<UUID> idList = ioDb.getListOfRawUUIDs(rs, count.value);
|
final List<UUID> idList = ioDb.getListOfRawUUIDs(rs, count.value);
|
||||||
field.set(data, idList);
|
field.set(data, idList);
|
||||||
count.inc();
|
count.inc();
|
||||||
return;
|
return;
|
||||||
} else if (objectClass == ObjectId.class) {
|
}
|
||||||
|
if (objectClass == ObjectId.class) {
|
||||||
final List<ObjectId> idList = ioDb.getListOfRawOIDs(rs, count.value);
|
final List<ObjectId> idList = ioDb.getListOfRawOIDs(rs, count.value);
|
||||||
field.set(data, idList);
|
field.set(data, idList);
|
||||||
count.inc();
|
count.inc();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user