0
public interface AreaRepository extends JpaRepository<Area, Integer>, JpaSpecificationExecutor<Area>{

    @Query("from Area where sup is null")
    List<Area> findProvinces();

    @Query("from Area where sup is null")
    Page<Area> findProvinces(Pageable pg);
}    

これが私のコードです。最初の方法は正常に機能しますが、2番目の方法は機能しません。誰かがそれを正しくする方法を教えてもらえますか?

4

1 に答える 1

1

ここで機能しないということは、2番目のクエリがエラーをスローし、私のSQLで指定されたすべてのデータを見つけることができないことを意味します

@Query( "supがnullのエリアから")。

実際にアーカイブしたいのはjpaを使用したqbeパターンで、ついにorg.springframework.data.jpa.domain.Specificationインターフェースを実装するソリューションを手に入れました。

public class QbeSpec<T> implements Specification<T> {

private final T example;

public QbeSpec(T example) {
    this.example = example;
}

@Override
public Predicate toPredicate(Root<T> root, CriteriaQuery<?> query, CriteriaBuilder cb) {
    if (example == null) {
        return cb.isTrue(cb.literal(true));
    }

    BeanInfo info = null;
    try {
        info = Introspector.getBeanInfo(example.getClass());
    } catch (IntrospectionException e) {
        throw new RuntimeException(e);
    }

    List<Predicate> predicates = new ArrayList<Predicate>();
    for (PropertyDescriptor pd : info.getPropertyDescriptors()) {
        String name = pd.getName();
        Object value = null;

        if (name.equals("class"))
            continue;

        try {
            value = pd.getReadMethod().invoke(example);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }

        if (value != null) {
            Path<String> path = root.get(name);
            // string using like others using equal
            if (pd.getPropertyType().equals(String.class)) {
                predicates.add(cb.like(path, "%" + value.toString() + "%"));
            } else {
                predicates.add(cb.equal(path, value));
            }
        }
    }

    return cb.and(predicates.toArray(new Predicate[predicates.size()]));
}

}

于 2012-08-07T01:27:05.547 に答える