spring-jpa规格工具
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-jpa规格工具相关的知识,希望对你有一定的参考价值。
我想在spring jpa下执行这个sql。但我无法使用Specification接口来构建规范。你能告诉我吗?
select * from
(
select distinct user_uid from ua_rel_user_role as userrole0_
where ( userrole0_.deleted_at = 0)
and (userrole0_.role_uid
in (:role_uid))
and userrole0_.product_code=:productCode
) as r
order by r.user_uid,r. product_code
desc limit 0,10;
答案
您必须使用JPA命名查询。关注这个reference。
以上是关于spring-jpa规格工具的主要内容,如果未能解决你的问题,请参考以下文章
Heroku spring-jpa UniqueConstraint
spring-jpa:PropertyReferenceException:没有找到类型 [PerfectionTask] 的属性 [保存]
Spring-JPA 可以与 Postgres 分区一起使用吗?