我可以在可分页的 findAll 存储库方法中引用 SpEL 中的 JPA 实体吗

Can I refer a JPA entity within SpEL, on pageable findAll repository method

我有一个实体

@Data
@Entity
@Builder
@AllArgsConstructor
@NoArgsConstructor
@Table(name="component")
@Audited
public class Component implements Serializable {

    private static final long serialVersionUID = 0L;

    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    private Long Id;

    @Version
    private Long version;

    @Builder.Default
    private Boolean activated = true;

    private String name;


    @ManyToOne
    @JoinColumn(referencedColumnName="Id", nullable = true)
    @Audited(targetAuditMode = RelationTargetAuditMode.NOT_AUDITED)
    private Organisation organisation;

}

...和存储库界面:

@Repository
@RepositoryRestResource(exported = false)
public interface ComponentRepository extends JpaRepository<Component, Long>, JpaSpecificationExecutor<Component>, RevisionRepository<Component, Long, Integer> {


     @Query("select c from Component c where 1 = ?#{@authorisation.isInternalUser() or @authorisation.isUserInOrg(#c) ? 1:0}")
      Page<Component> findAll(@Nullable Specification<Component> spec, Pageable pageable);

}

我的最终目标是以优雅的方式过滤掉不允许当前登录用户看到的实体。 我认为 SpEL 是一个很好的方法,但我没有找到在表达式中传递实体引用 'c' 的方法。 另一种替代方法可能是将 JPQL 更改为这样的东西?

 @Query("select c from Component c where c.organisation = ?#{ @authorisation.getCurrentUserOrganisation()} or 1 = ?#{@authorisation.isInternalUser() ? 1:0}")

或者也许有一种方法可以直接用一些 SpEL 注释实体?

我试图调试 Spring 源代码并了解它是如何工作的,但我所看到的只是在 SpEL 上下文评估中......只能访问 Pageable 对象和 JPA 规范。

提前致谢!

创建 Specification<Component> spec 这样做:

authorisation.isInternalUser() or @authorisation.isUserInOrg(#c) 

并与

一起使用
Page<Component> findAll(@Nullable Specification<Component> spec, Pageable pageable);