我正尝试通过使用具有以下代码的JPA存储库查询来获取值列表
List<Pair<String,byte[]>> pairs = repository.findList();
@Query(value= "select v.agentid, v.mobilenumber from dispatcher v")
public List<Pair<String,byte[]>> findList();
但是我遇到了错误
org.springframework.core.convert.ConverterNotFoundException: No converter found capable of converting from type [org.springframework.data.jpa.repository.query.AbstractJpaQuery$TupleConverter$TupleBackedMap] to type [org.javatuples.Pair<?, ?>]
我的逻辑有什么问题?
我正在使用下面的罐子
compile group: 'org.javatuples', name: 'javatuples', version: '1.2'