Spring没有hibernate的JPA

时间:2014-10-07 05:30:52

标签: spring jpa annotations

我无法理解Spring -JPA中的以下方法。

@RepositoryRestResource
public interface TestRepository extends JpaRepository<Vehicle, BigInteger>{
    public List<Vehicle> findAll(Sort sort);

}

Vehice是一个实体或域对象。

方法findAll(排序排序)做什么。

请帮帮我。

2 个答案:

答案 0 :(得分:1)

这再次声明了JpaRepository中的方法。

List<T> JpaRepository.findAll(Sort sort);

T = Vehicle使用给定的排序将所有车辆从数据库(或NOSQL存储)中取出并返回它们。

@RepositoryRestResource是一个注释,可将其作为HATEAOS休息资源发布。

答案 1 :(得分:0)

它允许您查找按Sort参数指定的所有车辆。