gpt4 book ai didi

java - 如何定义一个过滤器,向 Spring Data 中的所有查询附加附加 where 条件

转载 作者:行者123 更新时间:2023-12-02 10:24:15 25 4
gpt4 key购买 nike

我有十几个 Spring Data JPA 存储库,主要根据查询方法名称创建查询,但也使用 @Query 手动创建。 。现在我想添加一个额外的 where 条件,例如owner = <USER>其中 USER 在运行时动态提供给所有现有查询

有没有办法在 Spring Data 中实现这一点?

最佳答案

根据此回复response您应该将Where注释添加到与存储库相关的域类中。

@Entity
@Where(clause = "active='true'")
public class Customer {
//...
@Column
private Boolean active;
}

Where 子句 link

关于java - 如何定义一个过滤器,向 Spring Data 中的所有查询附加附加 where 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54093204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com