Прежде всего, предостережение: не все базы данных поддерживают синтаксис (t.foo, t.bar) IN ((1, 2), (3, 4))
. Использование делает ваше приложение непереносимым.
Я предполагаю, что число Pair
s в List
может быть произвольным (если нет, есть гораздо более простое решение, включающее изменение выражения IN
, например, IN (?1, ?2, ?3)
и обновление метода запроса принять три параметра типа List
. Я полагаю, это не то, что вы просите, хотя).
Проблема в том, что Hibernate не знает, как сопоставить класс Pair
с типом базы данных. Также кажется, что логика разрешения типов элементов коллекции отличается от логики разрешения для внешнего типа, поэтому listOf(listOf(1L, 2L), listOf(3L, 4L))
также не будет работать.
Решение (и это, похоже, хакерство) состоит в том, чтобы представить UserType
Hibernate, способный отображать Pair
объекты И использовать этот вновь созданный PairType
для элементов List
.
Прежде всего, добавьте следующий класс в ваш проект:
/* It is absolutely crucial that this class extend Pair. If the Pair class you're using
happens to be final, you will have to implement a Pair class yourself.
For an explanation of why this is required, have a look at SessionFactory.resolveParameterBindType()
and TypeResolver.heuristicType() methods */
public class PairType extends Pair<Long, Long> implements UserType {
public PairType(Long first, Long second) {
super(first, second);
}
public PairType() {
super(null, null);
}
@Override
public int[] sqlTypes() {
return new int[] {Types.ARRAY};
}
@Override
public Class returnedClass() {
return Pair.class;
}
@Override
public void nullSafeSet(PreparedStatement st, Object value, int index, SharedSessionContractImplementor session)
throws HibernateException, SQLException {
if (Objects.isNull(value)) {
st.setNull(index, Types.ARRAY);
} else {
final Pair pair = (Pair) value;
st.setArray(index, new Array() {
@Override
public Object getArray() throws SQLException {
// TODO Auto-generated method stub
return new Object[] {pair.getFirst(), pair.getSecond()};
}
...
//you can leave the rest of the autogenerated method stubs as they are
});
}
}
@Override
public Object deepCopy(Object value) throws HibernateException {
if (Objects.isNull(value)) {
return null;
}
return Pair.of(((Pair) value).getFirst(), ((Pair) value).getSecond());
}
@Override
public boolean isMutable() {
return false;
}
...
//you can leave the rest of the autogenerated method stubs as they are here as well
}
Затем измените сигнатуру вашего метода на:
selectByFoosAndBars(foosAndBars: Iterable<PairType>): Iterable<Thing>
Примечание: вышеупомянутое решение работало для меня из коробки для базы данных H2. Ваш пробег может варьироваться.