使用Hibernate在SpringData JPA中实现GenericRepository?

时间:2017-12-25 13:41:29

标签: spring-data-jpa

我有超过20个权限类。我只是不想为每个人生成JPA存储库。相反,需要实现通用存储库  对于save()findAll()findOne()等正常的粗略操作。

例如: -

@Entity
class Student{}

@Entity
class Teacher{}

public interface GenericRepository<T,Integer> extends JpaRepository{ }

此处T应该包含任何类型的Entity ..,例如StudentTeacher

0 个答案:

没有答案