如何解决如何将此 SQL 转换为 JPA?
sql 为列表。
select * from product_spu where (spu_code,version) in (("code1",1),("code2",2));
我有 product_spu 实体和一个 SpuCodeAndVersion
类。
@Data
private static final class SpuCodeAndVersion {
private String spuCode;
private int spuVersion;
}
但是我不能这样写jpa:
List<ProductSpuEntity> findAllBySpuCodeInAndVersionIn(List<SpuCodeAndVersion> codeAndVersions);
我该如何转换它?
解决方法
遗憾的是,如果没有自定义 JPA 查询,就无法实现这一点。
我正在用您提供的示例进行解释。
select * from product_spu where (spu_code,version) in (("code1",1),("code2",2));
同样可以在自定义查询中实现如下:
@Query("select s from ProductSpu where (s.spuCode,s.version) in (:#{#codeAndVersion.spuCode},:#{#codeAndVersion.spuVersion}")
ProductSpuEntity findAllBySpuCodeInAndVersionIn(SpuCodeAndVersion codeAndVersion);
现在您可以从循环中执行此查询并传递对象并将结果存储在另一个列表中。
注意:这属于 spring-data-jpa 1.7.2 + 并且需要 spring 4
有关更多信息,请参阅此文档:https://spring.io/blog/2014/07/15/spel-support-in-spring-data-jpa-query-definitions
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。