带Projection的Spring JPA本机查询给出“ ConverterNotFoundException”

带Projection的Spring JPA本机查询给出“ ConverterNotFoundException”,第1张

带Projection的Spring JPA本机查询给出“ ConverterNotFoundException”

借助d簧数据,您可以削减中间人并简单地定义

public interface Idsonly {  Integer getId();  String getOtherId();}

并使用本机查询,例如;

@Query(value = "Id, OtherId from TestTable where CreationDate > ?1 and Type in (?2)", nativeQuery = true)    public Collection<IdsOnly> findEntriesAfterDate(Date creationDate, List<Integer> types);

查看https://docs.spring.io/spring-
data/jpa/docs/current/reference/html/#projections



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5489171.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存