我有一个 PostgreSQL 表,其中channel_ids
字段是BIGINT []。
在控制台中我可以像这样搜索:
select * FROM user where 10000=ANY(channel_ids).
但我无法弄清楚如何在JpaRepository
中建立搜索规范。
public interface UserRepository extends JpaRepository<User, Long> {
Page<User> findAll(Specification<User> spec, Pageable pageable);
}
是否支持?